# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
96396 | mohammad | 경주 (Race) (IOI11_race) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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 = 998244353 ;
const ll oo = 1e13 ;
int cost[100010];
int besthub(int R, int L, int X[], long long B){
int ans = 1 ;
for(int i = 1 ; i < R ; ++i){
cost[i] = X[i] - X[i - 1] ;
}
int co = 1 ;
ll c = 0 ;
for(int i = 0 ; i < R - 1 ; ++i){
c += cost[i];
if(c > B){
ans = max(ans , co);
c = cost[i] ;
co = 1 ;
if(c > B){
ans = max(ans , co);
c = 0 ;
co = 0 ;
}
}
co++;
}
ans = max(ans , co);
return ans;
}