Submission #820104

#TimeUsernameProblemLanguageResultExecution timeMemory
820104nemethmRice Hub (IOI11_ricehub)C++17
42 / 100
1092 ms636 KiB
    #include "ricehub.h"
    #include <bits/stdc++.h>
     
    using namespace std;
     
    using ll = long long int;
     
    int besthub(int R, int L, int X[], long long B)
    {
      int ans = 0;
      for(int i = 0; i < R; ++i){
        priority_queue<int> q;
        for(int j = 0; j < R; ++j){
          q.push(-abs(X[i] - X[j]));
        }
        ll cost = 0;
        int actual = 0;
        while(!q.empty() && cost + (-q.top()) <= B){
          ++actual;
          cost += -q.top();
          q.pop();
        }
        ans = max(ans, actual);
      }
      return ans;
    }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...