Submission #161798

# Submission time Handle Problem Language Result Execution time Memory
161798 2019-11-04T12:38:04 Z dantoh000 Sure Bet (CEOI17_sure) C++14
0 / 100
2 ms 376 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int 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.1;
        y = (10000)*y + 0.1;
        a[i] = x, b[i] = y;
    }
    sort(a,a+n,greater<int>());
    sort(b,b+n,greater<int>());
    int ida = 0, idb = 0;
    ll suma = 0, sumb = 0;
    ll 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,max(0ll,min(suma,sumb)-10000*(long long)i));
    }
    double actans = ((double)ans+0.1)/10000;
    printf("%.4f",actans);
}

Compilation message

sure.cpp: In function 'int main()':
sure.cpp:6:20: warning: format '%lld' expects argument of type 'long long int*', but argument 2 has type 'int*' [-Wformat=]
     scanf("%lld",&n);
                  ~~^
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 time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Correct 2 ms 256 KB Output is correct
4 Correct 2 ms 376 KB Output is correct
5 Correct 2 ms 376 KB Output is correct
6 Incorrect 2 ms 296 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Correct 2 ms 256 KB Output is correct
4 Correct 2 ms 376 KB Output is correct
5 Correct 2 ms 376 KB Output is correct
6 Incorrect 2 ms 296 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Correct 2 ms 256 KB Output is correct
4 Correct 2 ms 376 KB Output is correct
5 Correct 2 ms 376 KB Output is correct
6 Incorrect 2 ms 296 KB Output isn't correct