# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
396189 | giorgikob | Gap (APIO16_gap) | C++14 | 51 ms | 1184 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 = -1, r = 1e18; r++;
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;
}
//cout << l+1 << " " << r-1 << endl;
MinMax(l+1,r-1,&new_l,&new_r);
//cout << new_l << " " << new_r << endl;
calls++;
if(new_l == -1){
answer = max(answer,r-l);
break;
} else {
if(cnt > 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... |