이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false); cin.tie(NULL);
int n; cin >> n;
vector<double> as, bs;
for( int i = 1; i <= n; i++ ){
double a, b; cin >> a >> b;
as.push_back(a);
bs.push_back(b);
}
sort( as.begin(), as.end() );
sort( bs.begin(), bs.end() );
double resp = 0, sa = 0, sb = 0;
for( int i = 1; i <= n; i++ ){
if( sa > sb ){
sb += bs.back();
bs.pop_back();
}
else{
sa += as.back();
as.pop_back();
}
resp = max( resp, min( sa, sb ) - (double)i );
}
cout << fixed << setprecision(4) << resp << endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |