이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
typedef long long ll;
typedef vector<ll> vll;
const ll inf = 1e18;
ll findGap(int T, int N){
ll lo, hi, t_lo, t_hi, ans = 1, cnt = 2;
MinMax(0, inf, &lo, &hi);
if(N == 2) return hi - lo;
if(T == 1){
while(lo < hi){
t_lo = lo, t_hi = hi;
if(cnt == N){
ans = max(ans, hi - lo);
break;
}
if(lo + 1 >= hi - 1) break;
MinMax(lo + 1, hi - 1, &lo, &hi);
ans = max(ans, t_hi - hi);
ans = max(ans, lo - t_lo);
cnt += 2;
}
return ans;
}
vll vec;
ll amm = (hi - lo) / (N - 2);
//cout << amm << endl;
vec.push_back(lo);
int id = lo + 1;
while(true){
MinMax(id, id + amm, &t_lo, &t_hi);
//cout << id << " " << id + amm << " " << t_lo << " " << t_hi << endl;
if(t_lo != - 1){
vec.push_back(t_lo);
vec.push_back(t_hi);
}
if(id + amm + 1 >= hi) break;
id += amm + 1;
}
vec.push_back(hi);
for(int i = 0; i < vec.size() - 1; i++)
ans = max(ans, vec[i + 1] - vec[i]);
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
gap.cpp: In function 'll findGap(int, int)':
gap.cpp:51:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < vec.size() - 1; i++)
~~^~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |