#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
#define ll long long
ll findGap(int T, int n)
{
vector<ll> a, b;
ll l = 0, r = 1e18;
long long mn, mx;
while (1)
{
MinMax(l, r, &mn, &mx);
if (mx == -1)
break;
a.push_back(mn);
b.push_back(mx);
l = mn + 1, r = mx - 1;
}
reverse(b.begin(), b.end());
ll ans = 0;
int last = a[0];
for (auto &i : a)
{
ans = max(ans, i - last);
last = i;
}
for (auto &i : b)
{
ans = max(ans, i - last);
last = i;
}
return ans;
}
int main()
{
return 0;
}
Compilation message
/usr/bin/ld: /tmp/ccgkzgGk.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/cc3lyWaj.o:gap.cpp:(.text.startup+0x0): first defined here
collect2: error: ld returned 1 exit status