This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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 time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |