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 "iostream"
#include "vector"
#include "map"
#include "math.h"
#include "string"
#include "algorithm"
#include "set"
#include <iterator>
#include <string.h>
#include <queue>
#include <list>
using namespace std;
typedef long long ll ;
const ll M = 1e9 + 7 ;
const ll oo = 1e13 ;
int besthub(int R, int L, int X[], long long B){
int best = 0 , l = 0 , l1 = X[0] ;
ll co = 0 ;
for(int i = 0 ; i < R ; ++i){
if(co + (X[i] - X[(l + i) / 2]) > B){
best = max(best , i - l + 1);
l = i ;
}else{
co += (X[i]- l1);
}
l1 = X[i];
}
return best;
}
# | 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... |