Submission #1027726

#TimeUsernameProblemLanguageResultExecution timeMemory
1027726GangstaGap (APIO16_gap)C++14
0 / 100
33 ms2804 KiB
#include "bits/stdc++.h"
#include "gap.h"
#define ll long long
#define pb push_back
#define pii pair<ll,ll>
#define ff first
#define ss second
#define sz size()

const int N = 2e5 + 1;

using namespace std;

ll ans;

// void MinMax(ll s, ll t, ll &mn, ll &mx){
// 	int a, b;
// 	cin >> a >> b;
// 	mn = a;
// 	mx = b;
// }

ll findGap(int t, int n){
	ll mn, mx, l = -1, r = 1e18;
	r++;
	if(t == 1){
		while(1){
			if(l + 1 > r - 1) return ans;
			MinMax(l + 1, r - 1, &mn, &mx);
			if(mn == -1){
				ans = max(ans,r-l);
				return ans;
			}
			if(l >= 0 and r <= 1e18) ans = max({ans,mn-l,r-mx});
			l = mn;
			r = mx;
		}
	}
}

// int main(){
//     int n, t;
//     cin >> t >> n;
//     cout << findGap(t, n);
// }

Compilation message (stderr)

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:39:1: warning: control reaches end of non-void function [-Wreturn-type]
   39 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...