Submission #41245

#TimeUsernameProblemLanguageResultExecution timeMemory
41245Just_Solve_The_ProblemGap (APIO16_gap)C++11
Compilation error
0 ms0 KiB
#include <gap.h> #include <bits/stdc++.h> #define ll long long using namespace std; ll findgap(int t, int n) { ll l, r; MinMax(0, 1e18, &l, &r); l++; r--; ll dif = (r - l + 1) / n; ll start = l; ll fin = start + dif - 1; ll fre = 0; ll mx = 0; ll ans = 0; while (1) { ll l1, r1; MinMax(start, fin, &l1, &r1); if (l1 == -1) { fre += dif; } else { if (fre != 0) { ans = max(ans, fre + mx + (l1 - start + 1)); } fre = 0; mx = fin - r1; } if (fin == r) break; start = fin + 1; fin = min(start + dif - 1, r); } return ans; }

Compilation message (stderr)

/tmp/cczGb7JU.o: In function `main':
grader.cpp:(.text.startup+0x1ae): undefined reference to `findGap(int, int)'
collect2: error: ld returned 1 exit status