# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1085044 | Timosh | Gap (APIO16_gap) | C++17 | 58 ms | 5964 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
long long mn = 0, mx = 0;
set<long long> st;
void gen(long long l, long long r)
{
if (l > r)
return;
MinMax(l, r, &mn, &mx);
if (mn == -1)
return;
st.insert(mn);
st.insert(mx);
if (mn == mx)
return;
l = mn + 1, r = mx - 1;
long long m = l + (r - l) / 2;
gen(l, m);
gen(m + 1, r);
}
long long findGap(int T, int N)
{
long long ans = 1;
if (T == 2)
{
gen(0, 1e18);
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |