Submission #820096

#TimeUsernameProblemLanguageResultExecution timeMemory
820096nemethmRice Hub (IOI11_ricehub)C++17
17 / 100
1060 ms824 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 <= L; ++i){ priority_queue<int> q; for(int j = 0; j < R; ++j){ q.push(-abs(i - X[j])); } ll cost = 0; int actual = 0; while(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...