Submission #1012036

#TimeUsernameProblemLanguageResultExecution timeMemory
1012036codefoxGap (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;
    ll mxdist = 0;
    ll nl = 0;
    ll nr = 0;
    ll fl = -1;
    ll fr = -1;
    for (int j = 0; j < n && l<=r; j+=2)
    {
        MinMax(l, r, &nl, &nr);
        if (nr==-1) break;
        if (fl != -1 && nl-fl>mxdist) mxdist = nl-fl;
        if (fr != -1 && fr-nr>mxdist) mxdist = fr-nr;
        fl = nl;
        fr = nr;
        l = nl+1;
        r = nr-1;
    }
    if (fr-fl>mxdist) mxdist = fr-fl;
    return mxdist;
}

Compilation message (stderr)

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:14:25: error: 'n' was not declared in this scope
   14 |     for (int j = 0; j < n && l<=r; j+=2)
      |                         ^