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