# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
303019 | 2020-09-19T18:27:44 Z | Kenzo_1114 | Sure Bet (CEOI17_sure) | C++17 | 0 ms | 384 KB |
#include<bits/stdc++.h> using namespace std; const int MAXN = 100010; int n; pair<double, int> a[MAXN], b[MAXN]; bool marc[MAXN]; int main () { scanf("%d", &n); for(int i = 0; i < n; i++) { double A, B; scanf("%lf %lf", &A, &B); a[i] = make_pair(A, i); b[i] = make_pair(B, i); } sort(a, a + n); sort(b, b + n); int ida = n - 1, idb = n - 1; double ans = (int) 0, sa = (int) 0, sb = (int) 0; for(int i = 0; i < n; i++) { if(sa >= sb) { while(0 <= idb && marc[b[idb].second]) idb--; if(0 <= idb) sb += b[idb].first, marc[b[idb].second] = true; } else { while(0 <= ida && marc[a[ida].second]) ida--; if(0 <= ida) sa += a[ida].first, marc[a[ida].second] = true; } ans = max(ans, min(sa, sb) - i - 1); } printf("%.4lf\n", ans); } /* 4 1.4 3.7 1.2 2 1.6 1.4 1.9 1.5 */
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 384 KB | Output is correct |
2 | Incorrect | 0 ms | 384 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 384 KB | Output is correct |
2 | Incorrect | 0 ms | 384 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 384 KB | Output is correct |
2 | Incorrect | 0 ms | 384 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |