#include <bits/stdc++.h>
using namespace std;
double Get(vector<double> a , vector<double> b) {
int n = (int)a.size();
double h = 0 , t = 0;
double ans = 0;
int id = 0;
for (int i = 0 ; i < n ; i++) {
h += a[i];
double new_t = t - 1;
int add = 0;
while (id < n && min(h - add , new_t) <= ans) {
add += 1;
new_t += b[id];
id += 1;
}
h -= add;
t = new_t;
ans = max(ans , min(h , new_t));
}
return ans;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
vector<double> a(n) , b(n);
for (int i = 0 ; i < n ; i++) {
cin >> a[i] >> b[i];
a[i] -= 1;
b[i] -= 1;
}
sort(a.rbegin() , a.rend());
sort(b.rbegin() , b.rend());
double ans = max(Get(a , b) , Get(b , a));
cout << fixed << setprecision(4) << ans << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
1 ms |
212 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
6 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
1 ms |
212 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
6 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
0 ms |
212 KB |
Output is correct |
3 |
Correct |
0 ms |
212 KB |
Output is correct |
4 |
Correct |
1 ms |
212 KB |
Output is correct |
5 |
Correct |
0 ms |
212 KB |
Output is correct |
6 |
Incorrect |
0 ms |
212 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |