#include "ricehub.h"
#include<algorithm>
int besthub(int R, int L, int X[], long long B)
{
int optimalGain=0;
int m, l, r;
l = r = m = 0;
long long spent = 0;
int localGain = 1;
while(1) {
if(r!=(R-1))r++;
else break;
spent+= X[r]-X[m];
m = (r+l+1)/2;
if(spent>B) {
optimalGain = std::max(optimalGain, localGain);
while(spent>B) {
spent+= X[l]-X[m];
l++;
m = (r+l+1)/2;
localGain--;
}
}
localGain++;
}
return optimalGain ;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
5020 KB |
Output is correct |
2 |
Correct |
0 ms |
5020 KB |
Output is correct |
3 |
Correct |
0 ms |
5020 KB |
Output is correct |
4 |
Correct |
0 ms |
5020 KB |
Output is correct |
5 |
Correct |
0 ms |
5020 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
5020 KB |
Output is correct |
2 |
Correct |
0 ms |
5020 KB |
Output is correct |
3 |
Incorrect |
0 ms |
5020 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
5020 KB |
Output is correct |
2 |
Correct |
0 ms |
5020 KB |
Output is correct |
3 |
Incorrect |
0 ms |
5020 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
5020 KB |
Output is correct |
2 |
Correct |
0 ms |
5020 KB |
Output is correct |
3 |
Incorrect |
13 ms |
5020 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |