제출 #161787

#제출 시각아이디문제언어결과실행 시간메모리
161787dantoh000Sure Bet (CEOI17_sure)C++14
0 / 100
2 ms380 KiB
#include <bits/stdc++.h> #define int long long using namespace std; main(){ int n; scanf("%lld",&n); int a[n], b[n]; for (int i = 0; i < n; i++){ double x,y; scanf("%lf%lf",&x,&y); x = (10000)*x + 0.5; y = (10000)*y + 0.5; a[i] = x, b[i] = y; } sort(a,a+n,greater<int>()); sort(b,b+n,greater<int>()); int ida = 0, idb = 0; int suma = 0, sumb = 0; int ans = 0; for (int i = 1; i <= 2*n; i++){ if (ida != n && suma < sumb){ suma += a[ida]; ida++; } else{ sumb += b[idb]; idb++; } ans = max(ans,min(suma,sumb)-10000*i); } double actans = (double)ans/10000; printf("%.4f",actans); }

컴파일 시 표준 에러 (stderr) 메시지

sure.cpp:4:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main(){
      ^
sure.cpp: In function 'int main()':
sure.cpp:6:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%lld",&n);
     ~~~~~^~~~~~~~~~~
sure.cpp:10:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%lf%lf",&x,&y);
         ~~~~~^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...