이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <vector>
#include <set>
#include <string>
#include <assert.h>
#include <map>
using namespace std;
typedef long long int ll;
typedef vector <ll> vi;
typedef vector <vi> vvi;
typedef vector <double> vd;
int main (){
cout.setf(ios::fixed);
cout.precision(4);
int n;
cin >> n;
vd A(n), B(n);
for (int i = 0; i < n; ++i){
cin >> A[i] >> B[i];
}
sort(A.rbegin(), A.rend());
sort(B.rbegin(), B.rend());
double pa = 0, pb = 0;
int ia = 0, ib = 0;
double solution = 0;
while (ia < n and ib < n){
if (pa >= pb) {
pa -= 1;
pb += (B[ib] - 1);
++ib;
}
else {
pb -= 1;
pa += (A[ia] - 1);
++ia;
}
solution = max(solution, min(pa, pb));
}
cout << solution << endl;
}
/*
4
1.4 3.7
1.2 2
1.6 1.4
1.9 1.5
*/
/*
4
1.4 4.7
1.2 2
1.6 1.4
1.9 1.5
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |