# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
953926 |
2024-03-26T22:18:33 Z |
4QT0R |
Gap (APIO16_gap) |
C++17 |
|
0 ms |
0 KB |
#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
/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