#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 time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Correct |
1 ms |
312 KB |
Output is correct |
5 |
Correct |
1 ms |
312 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
312 KB |
Output is correct |
3 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
16 ms |
316 KB |
Output is correct |
2 |
Correct |
24 ms |
212 KB |
Output is correct |
3 |
Execution timed out |
1060 ms |
212 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1056 ms |
824 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |