제출 #467649

#제출 시각아이디문제언어결과실행 시간메모리
467649SirCovidThe19thGap (APIO16_gap)C++17
컴파일 에러
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; }

컴파일 시 표준 에러 (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);
      |     ^~~~~~