Submission #303024

#TimeUsernameProblemLanguageResultExecution timeMemory
303024Kenzo_1114Sure Bet (CEOI17_sure)C++17
0 / 100
1 ms256 KiB
#include<bits/stdc++.h> using namespace std; const int MAXN = 100010; int n; double a[MAXN], b[MAXN], A, B; int main () { scanf("%d", &n); for(int i = 0; i < n; i++) { scanf("%lf %lf", &A, &B); a[i] = A; b[i] = B; } 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 && 0 <= idb) sb += b[idb], idb--; else if(sa < sb && 0 <= ida) sa += a[ida], ida--; 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 (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:14:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   14 |   scanf("%lf %lf", &A, &B);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...