이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "ricehub.h"
#include <iostream>
#include <algorithm>
using namespace std;
int besthub(int R, int L, int X[], long long B)
{
sort(X, X + R);
int n = R;
int from = 0;
int to = 0;
long long cost = 0;
int res = 1;
while (true) {
int currRange = to - from + 1;
to++;
if (to >= n) break;
int newDist = X[to] - X[to - 1];
cost += (long long)currRange * newDist;
while (cost > B) {
if (from > to) return 0;
cost -= (long long)X[to] - X[from];
from++;
}
res = max(res, to - from + 1);
}
return res;
}
# | 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... |