# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
400625 | Falcon | Gap (APIO16_gap) | C++17 | 69 ms | 1936 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "gap.h"
#include <algorithm>
#include <iostream>
#include <vector>
#include <cassert>
long long findGap(int T, int N) {
if(T == 1) {
std::vector<long long> a; a.reserve(N);
long long s{0}, e{(long long)1e18};
while(int(a.size()) < N) {
MinMax(s, e, &s, &e);
assert(s != -1);
a.push_back(s); a.push_back(e);
++s, --e;
}
std::sort(a.begin(), a.end());
long long ans{};
for(int i{}; i < int(a.size()) - 1; ++i)
ans = std::max(ans, a[i + 1] - a[i]);
return ans;
}
long long a1{}, aN{};
MinMax(0, (long long)1e18, &a1, &aN);
long long d = (aN - a1 + N - 2) / (N - 1), ans = d;
for(long long i = a1, p = a1; i <= aN; i += d + 1) {
long long s{}, e{};
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |