이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include <vector>
#include <algorithm>
long long findGap(int T, int N) {
if(T == 1) {
long long LF, RT;
MinMax(0, 1LL << 60, &LF, &RT);
long long res = (N == 2) ? (RT - LF) : 0;
for(int l = 1, r = N - 2; l <= r; ++l, --r) {
long long LF_old = LF, RT_old = RT;
MinMax(LF_old + 1, RT_old - 1, &LF, &RT);
res = std::max(res, std::max(LF - LF_old, RT_old - RT));
if(l + 1 == r) {
res = std::max(res, RT - LF);
}
}
return res;
}
}
컴파일 시 표준 에러 (stderr) 메시지
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:20:1: warning: control reaches end of non-void function [-Wreturn-type]
20 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |