This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
long long int inf = 3*(1e9 + 10);
long long int maxi(long long int a, long long int b){
if(a>b) return a;
else return b;
}
long long int mini(long long int a, long long int b){
if(a<b) return a;
else return b;
}
int main(){
int n, k;
cin >> n >> k;
long long int maxx = -inf, maxy = -inf, minx = inf, miny = inf;
for(int i=0; i<n; i++){
long long int x, y;
cin >> x >> y;
minx = mini(x, minx);
miny = mini(y, miny);
maxx = maxi(x, maxx);
maxy = maxi(y, maxy);
}
long long int l = maxi(maxx-minx, maxy-miny);
if(l==0) l = 1;
cout << minx << " " << miny << " " << l;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |