Submission #467649

#TimeUsernameProblemLanguageResultExecution timeMemory
467649SirCovidThe19thGap (APIO16_gap)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; #define ll long long ll findGap(ll t, ll n){ ll mn, mx, lim, lb, ans = 0; MinMax(1, 1e18, mn, mx); lb = (mx - mn) / (n - 1); lim = mx; for (ll l = mn, r = mn + lb - 1, prvMx = 1e18; l < lim; l += lb, r += lb){ MinMax(l, r, mn, mx); ans = max(ans, mn - prvMx); if (~mx) prvMx = mx; } return ans; }

Compilation message (stderr)

gap.cpp: In function 'long long int findGap(long long int, long long int)':
gap.cpp:8:5: error: 'MinMax' was not declared in this scope
    8 |     MinMax(1, 1e18, mn, mx);
      |     ^~~~~~