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 ;
int n ;
bool cmp(double a, double b){ return a >= b ; }
int main(){
scanf("%d",&n) ;
vector<double> x, y, p_x, p_y ;
for(int i = 1 ; i <= n ; i++) {
double a, b ; scanf("%lf%lf", &a, &b) ;
x.push_back(a), y.push_back(b) ;
p_x.push_back(0), p_y.push_back(0) ;
}
sort(x.begin(), x.end(), cmp) ; sort(y.begin(), y.end(), cmp) ;
p_x[0] = x[0], p_y[0] = y[0] ;
for(int i = 1 ; i < n ; i++) p_x[i] = p_x[i-1] + x[i], p_y[i] = p_y[i-1] + y[i] ;
double ans = 0 ;
for(int i = 1 ; i <= n ; i++){
int ini = 1, fim = n, mid, best = -1 ; double mn = p_x[i-1] ;
while(ini <= fim){
mid = (ini + fim)>>1 ;
if(abs((p_x[i-1] - mid - i)-(p_y[mid-1] - mid - i)) <= mn){
mn = abs((p_x[i-1] - mid - i)-(p_y[mid-1] - mid - i)) ;
best = mid ;
}
if(p_x[i-1] - mid - i <= p_y[mid-1] - mid - i) fim = mid - 1 ;
else ini = mid + 1 ;
}
if(best != -1) ans = max(ans, min(p_x[i-1] - (double)best - (double)i, p_y[best-1] - (double)i - (double)best)) ;
}
printf("%.4lf\n", ans) ;
}
Compilation message (stderr)
sure.cpp: In function 'int main()':
sure.cpp:10:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
10 | scanf("%d",&n) ;
| ~~~~~^~~~~~~~~
sure.cpp:15:22: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
15 | double a, b ; scanf("%lf%lf", &a, &b) ;
| ~~~~~^~~~~~~~~~~~~~~~~~| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |