| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 820100 | nemethm | Rice Hub (IOI11_ricehub) | C++17 | 1074 ms | 864 KiB |
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 = 1; 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(!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... | ||||
