Submission #409897

# Submission time Handle Problem Language Result Execution time Memory
409897 2021-05-21T18:40:43 Z Dan4Life Rice Hub (IOI11_ricehub) C++17
Compilation error
0 ms 0 KB
#define ll long long
int besthub(int n, int m, int a[], ll k)
{
    ll ans = 0;
    for(int i = 0; i < n; i++){
        multiset<int> S; S.clear();
        for(int j = 0; j < n; j++)
            S.insert(abs(a[i]-a[j]));
        ll K = k, cnt = 0;
        while(!S.empty() and K>=(*S.begin()))
            cnt++, K-=(*S.begin()), S.erase(S.begin());
        if(ans<cnt)ans=cnt;
    }
    return ans;
}

Compilation message

ricehub.cpp: In function 'int besthub(int, int, int*, long long int)':
ricehub.cpp:6:9: error: 'multiset' was not declared in this scope
    6 |         multiset<int> S; S.clear();
      |         ^~~~~~~~
ricehub.cpp:6:18: error: expected primary-expression before 'int'
    6 |         multiset<int> S; S.clear();
      |                  ^~~
ricehub.cpp:6:26: error: 'S' was not declared in this scope
    6 |         multiset<int> S; S.clear();
      |                          ^
ricehub.cpp:8:22: error: 'abs' was not declared in this scope; did you mean 'ans'?
    8 |             S.insert(abs(a[i]-a[j]));
      |                      ^~~
      |                      ans