# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
963115 | Amr | 경주 (Race) (IOI11_race) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "ricehub.h"
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define F first
#define S second
#define sz size()
const int N = 1000;
ll pre[N];
int besthub(int R, int L, int X[], long long B)
{
ll l = 1, r = R+1;
for(int i = 0; i < R; i++) pre[i+1] = pre[i]+X[i];
while(l+1<r)
{
ll mid = (l+r)/2;
for(int i = mid-1; i < R; i++)
{
ll po = i-mid/2;
ll res = pre[i+1]-pre[po-1+1]-((mid+1)/2)*X[po+1]+(mid/2)*X[po+1]-(pre[po-1+1]-pre[i-mid+1]);
if(res<=B) l = mid; else r = mid;
}
}
return l;
}