이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "ricehub.h"
using namespace std;
int p[100005];
bool f(int k, int n, long long B){
if(k==0) return true;
int med = k/2;
long long D = 0;
for(int i = 0; i < k; i++){
D+=abs(p[med]-p[i]);
}
long long d = D;
for(int l = 1; l+k<=n; l++){
D-=abs(p[med]-p[l-1]);
med++;
D+=abs(p[med]-p[(l+k)-1]);
d = min(d, D);
}
return d <= B;
}
int besthub(int n, int L, int x[], long long B)
{
for(int i = 0; i < n; i++){
p[i] = x[i];
}
int ini = 0, fin = n;
while(ini+1<fin){
int mit = (ini+fin)/2;
if(f(mit,n,B)){
ini = mit;
}else{
fin = mit-1;
}
}
if(f(fin,n,B)) return fin;
return ini;
}
| # | 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... |