Submission #590898

#TimeUsernameProblemLanguageResultExecution timeMemory
590898MasterTasterGap (APIO16_gap)C++14
Compilation error
0 ms0 KiB
#include "gap.h"
#include <bits/stdc++.h>
 
#define pb push_back
#define ll long long
#define pii pair<int, int>
#define xx first
#define yy second
#define MAXN 100010
 
using namespace std;
 
long long findGap(int t, int n)
{
    if (t==1)
    {
        ll minn, maxx;
        MinMax(0LL, 1000000000000000000LL, &minn, &maxx);

        if (N==2) { return maxx-minn; }

        int i=1; int j=N-2;

        ll ress=0;
        while (i<=j)
        {
            ll staromin=minn, staromax=maxx;
            MinMax(minn+1, maxx-1, &minn, &maxx);

            if (j-i==1) { ress=max(ress, maxx-minn); }

            ress=max(ress, max(minn-staromin, staromax-maxx));

            i++; j--;
        }
        return ress;
    }
    else
    {
        ll minn, maxx;
        MinMax(0LL, 1000000000000000000LL, &minn, &maxx);
        int skok=(maxx-minn+n-2)/(n-1);

        //cout<<minn<<" "<<maxx<<" "<<skok<<endl;
        for (int i=minn; i<maxx; i+=skok)
        {
            ll a, b;
            MinMax(i, min(maxx, (ll)i+skok-1), &a, &b);
            //cout<<endl<<i<<" "<<min(maxx, (ll)i+skok-1)<<" "<<a<<" "<<b<<endl;
            if (a==-1) { continue; }
            else if (a!=b) { /*cout<<a<<" "<<b<<endl;*/ svi.pb(a); svi.pb(b); }
            else { /*cout<<a<<endl;*/ svi.pb(a); }
        }

        ll ress=skok;
        for (int i=0; i<svi.size()-1; i++) ress=max(ress, (ll)(svi[i+1]-svi[i]));
        return ress;
    }
}

Compilation message (stderr)

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:20:13: error: 'N' was not declared in this scope
   20 |         if (N==2) { return maxx-minn; }
      |             ^
gap.cpp:22:24: error: 'N' was not declared in this scope
   22 |         int i=1; int j=N-2;
      |                        ^
gap.cpp:51:57: error: 'svi' was not declared in this scope
   51 |             else if (a!=b) { /*cout<<a<<" "<<b<<endl;*/ svi.pb(a); svi.pb(b); }
      |                                                         ^~~
gap.cpp:52:39: error: 'svi' was not declared in this scope
   52 |             else { /*cout<<a<<endl;*/ svi.pb(a); }
      |                                       ^~~
gap.cpp:56:25: error: 'svi' was not declared in this scope
   56 |         for (int i=0; i<svi.size()-1; i++) ress=max(ress, (ll)(svi[i+1]-svi[i]));
      |                         ^~~