#include<bits/stdc++.h>
#include "ricehub.h"
using namespace std;
int besthub(int n, int L, int X[], long long B){
long long sum = 0;
int num = 0;
int last = 0;
vector<long long> PR(n);
int ans = 0,ps = 0;
for (int i = 0 ; i < n; i++) {
sum += X[i];
PR[i] = sum;
num++;
while (true) {
long long e = sum/num;
int pos = lower_bound(X + last, X + i+1, e) - X;
long long D = 0;
long long s = X[pos]*(pos - last + 1) - (PR[pos] - (last ? PR[last-1] : 0)) + (PR[i] - PR[pos]) -X[pos]*( i - pos);
if (s <= B)
if (ans < i - last + 1)
ans = i - last + 1, ps = X[pos];
D = s;
pos = upper_bound(X + last, X + i+1, e) - X - 1;
if (pos <= i && pos >= last)
s =X[pos]*(pos - last + 1) - (PR[pos] - (last ? PR[last-1] : 0)) + (PR[i] - PR[pos]) -X[pos]*( i - pos);
D = min(D,s);
if (s <= B)
if (ans < i - last + 1)
ans = i - last + 1, ps = X[pos];
if (D > B) {
last++;
num--;
continue;
}
else break;
}
}
return ps;
} /*
main() {
int n,L;
long long B;
cin >> n >> L >> B; int X[n];
for (int i = 0; i < n ; i++) cin >> X[i];
cout << besthub(n,L,X,B);
}
) */
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
9 ms |
640 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |