이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gap.h"
#define ad push_back
#define lli long long int
using namespace std;
int n;
lli l, r;
long long findGap(int T, int N)
{
n = N;
lli nl, nr;
MinMax(0, 1e18, &nl, &nr);
if(T == 1)
{
vector <lli> a, b;
a.ad(nl), b.ad(nr);
for (int i = 0; i < (n - 1) / 2; i++)
{
MinMax(nl + 1, nr - 1, &nl, &nr);
a.ad(nl), b.ad(nr);
}
lli mx = 0;
reverse(b.begin(), b.end());
for(auto p : b) a.ad(p);
for (int i = 0; i < a.size() - 1; i++)
mx = max(mx, a[i + 1] - a[i]);
return mx;
}
lli ans = 1;
while(nl < nr - 1)
{
MinMax(nl + 1LL, nl + ans + 1LL, &l, &r);
if(l == -1)
{
ans += 2LL;
while(l == -1)
{
MinMax(nl + 1LL, nl + ans * 2, &l, &r);
if(l == -1) ans *= 2LL, ans++;
else ans = max(ans, l - nl), nl = r;
}
}
else ans = max(ans, l - nl), nl = r;
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:27:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for (int i = 0; i < a.size() - 1; i++)
| ~~^~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |