Submission #953926

#TimeUsernameProblemLanguageResultExecution timeMemory
9539264QT0RGap (APIO16_gap)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
#define ll long long

ll findGap(ll T, ll n){
	ll L,P;
	MinMax(0,1e18,&L,&P);
	ll d=(P-L)/(n-1);
	ll ans=d,x,y;
	while(P-L>d){
		MinMax(L+1,P-1,&x,&y);
		if (x==-1)ans=max(ans,P-L);
		else{
			ans=max({ans,x-L,P-y});
			L=x;
			P=y;
		}
	}
	return ans;
}

Compilation message (stderr)

/usr/bin/ld: /tmp/cchzaqlR.o: in function `main':
grader.cpp:(.text.startup+0x1b7): undefined reference to `findGap(int, int)'
collect2: error: ld returned 1 exit status