Submission #1084420

#TimeUsernameProblemLanguageResultExecution timeMemory
1084420MMihalevGap (APIO16_gap)C++14
Compilation error
0 ms0 KiB
#include<iostream>
#include<algorithm>
#include "gap.h"
using namespace std;
__int64 mn,mx;
__int64 findGap(int T,long int N)
{
    __int64 l=-1,r=1000000000000000001LL;
    long int rem=N;
    __int64 ans=1;
    while(rem>0)
    {
        MinMax(l+1,r-1,&mn,&mx);
        if(rem==2)ans=max(ans,mx-mn);
        if(l!=-1)
        {
            ans=max(ans,mn-l);
            ans=max(ans,r-mx);
        }
        if(mn!=mx)rem-=2;
        else rem--;
        l=mn;
        r=mx;
    }
    return ans;
}

Compilation message (stderr)

gap.cpp:5:1: error: '__int64' does not name a type; did you mean '__int64_t'?
    5 | __int64 mn,mx;
      | ^~~~~~~
      | __int64_t
gap.cpp:6:1: error: '__int64' does not name a type; did you mean '__int64_t'?
    6 | __int64 findGap(int T,long int N)
      | ^~~~~~~
      | __int64_t