# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
396172 | giorgikob | Gap (APIO16_gap) | C++14 | 55 ms | 1100 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>
#define ll long long
#define ff first
#define ss second
#define pb push_back
using namespace std;
//#include "game.h"
#include "gap.h"
ll answer = 0;
long long findGap(int T, int N)
{
ll pirveli, bolo;
ll l = 0, r = 1e18+1;
ll cnt = 0;
int calls = 0;
while(true){
ll new_l,new_r;
cnt++;
if(cnt > (N+1)/2){
if(l != r){
answer = max(answer,r-l);
}
break;
}
if(l+1 > r-1){
if(l == r) break;
answer = max(answer,r-l);
break;
}
MinMax(l+1,r-1,&new_l,&new_r);
calls++;
if(new_l == -1){
answer = max(answer,r-l);
break;
} else {
if(r != 1e18+1)answer = max(answer, max(new_l-l,r-new_r));
l = new_l;
r = new_r;
}
}
assert(calls<=(N+1)/2);
return answer;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |