Am I not taking into account some cases or something?
#include <iostream>
#include <fstream>
using namespace std;
int main(){
ifstream fin("teleport.in");
ofstream fout("teleport.out");
int a;
int b;
int x;
int y;
int mindistance;
//a = b, distance = 0
//x = y, distance = abs a - b
//x is closer to a, distance = abs a - x + abs b - y
//x is closer to b, distance = abs b - x + abs a - y
fin >> a >> b >> x >> y;
if(a==b){mindistance = 0;}
if(x==y){mindistance = abs(a - b);}
if((abs(a - x)) < (abs(b - x))){mindistance = abs(a - x) + abs(b - y);}
if((abs(a - x)) > (abs(b - x))){mindistance = abs(b - x) + abs(a - y);}
if((abs(a - x)) == (abs(b - x))){mindistance = abs(a - x)*2;}
fout << mindistance;
}
The purpose of stress testing is to find a small test case where your solution gives a different output than the official solution. It’s linked to in How to ask for help on a problem.
But in this case, there’s no need for stress testing since the official test data is already small enough to simulate by hand.