# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
523796 | vonatlus | Gap (APIO16_gap) | C++17 | 26 ms | 1872 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#pragma GCC optimize("O3")
//#pragma comment(linker, "/STACK:36777216")
#include<bits/stdc++.h>
#define x first
#define y second
#define pb push_back
#define sz(x) (int) x.size()
#define all(z) (z).begin(), (z).end()
using namespace std;
using ll = long long;
using pii = pair<int, int>;
const int MOD = 1e9 + 7;
const int INF = 1e9 + 1e2;
long long findGap(int T, int n) {
vector<ll> a(n);
ll l = 0, r = 1e18;
for (int i = 0; i < (n+1)/2; ++i) {
ll *nl, *nr;
MinMax(l, r, nl, nr);
a[i] = *nl;
a[n-i-1] = *nr;
l = a[i]+1, r = a[n-i-1]-1;
}
ll ans = 0;
for (int i = 1; i < n; ++i) {
ans = max(ans, a[i]-a[i-1]);
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |