Submission #1012017

#TimeUsernameProblemLanguageResultExecution timeMemory
1012017codefoxGap (APIO16_gap)C++14
Compilation error
0 ms0 KiB
#include "gap.h" #define ll long long long long findGap(int T, int N) { ll l = 0; ll r = 1e18; int mxdist = 0; ll nl = 0; ll nr = 0; ll fl = -1; ll fr = -1; while (nl != -1 && l <= r) { MinMax(l, r, *nl, *nr); if (fl != -1) mxdist = max(mxdist, nl-fl); if (fr != -1) mxdist = max(mxdist, fr-nr); fl = nl; fr = nr; l = nl+1; r = nr-1; } mxdist = max(mxdist, fr-fl); return mxdist; }

Compilation message (stderr)

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:16:22: error: invalid type argument of unary '*' (have 'long long int')
   16 |         MinMax(l, r, *nl, *nr);
      |                      ^~~
gap.cpp:16:27: error: invalid type argument of unary '*' (have 'long long int')
   16 |         MinMax(l, r, *nl, *nr);
      |                           ^~~
gap.cpp:17:32: error: 'max' was not declared in this scope
   17 |         if (fl != -1) mxdist = max(mxdist, nl-fl);
      |                                ^~~
gap.cpp:18:32: error: 'max' was not declared in this scope
   18 |         if (fr != -1) mxdist = max(mxdist, fr-nr);
      |                                ^~~
gap.cpp:24:14: error: 'max' was not declared in this scope
   24 |     mxdist = max(mxdist, fr-fl);
      |              ^~~