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