이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gap.h"
#define ll long long int
using namespace std;
ll findGap(int type, int n){
ll ma, mi; ll ans = 0;
MinMax(0, 2e18, &mi, &ma);
if(type == 1){
for(int i = 1; i < (n + 1) / 2; ++i){
ll currma, currmi;
MinMax(mi + 1, ma - 1, &currmi, &currma);
ans = max(ans, max(currmi - mi, ma - currma));
mi = currmi; ma = currma;
}
return ans = max(ans, ma - mi);
}
}
컴파일 시 표준 에러 (stderr) 메시지
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:18:1: warning: control reaches end of non-void function [-Wreturn-type]
18 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |