Submission #330799

#TimeUsernameProblemLanguageResultExecution timeMemory
330799Sho10Gap (APIO16_gap)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> //Andrei Alexandru a.k.a Sho10 #define ll long long #include "gap.h" #define double long double #pragma GCC optimize("O3") #pragma GCC optimize("Ofast") #define all(a) (a).begin(), (a).end() #define f first #define s second #define pb push_back #define mp make_pair #define pi pair #define rc(s) return cout<<s,0 #define endl '\n' #define mod (10*10*10*10*10*10*10*10*10+7) #define PI 3.14159265359 #define MAXN 100005 #define INF 1000000005 #define LINF 1000000000000000005ll #define CODE_START ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); using namespace std; int findGap(int t,int n){ if(t==1){ ll l=-1,r=LINF; ll a,b; ll ans=LINF; while(l!=r){ minMax(l,r,&a,&b); if(l!=-1){ ans=min(ans,a-l); } if(r!=LINF){ ans=min(ans,r-b); } l=a; r=b; } return ans; } } /* int32_t main(){ CODE_START; */

Compilation message (stderr)

gap.cpp: In function 'int findGap(int, int)':
gap.cpp:28:9: error: 'minMax' was not declared in this scope; did you mean 'MinMax'?
   28 |         minMax(l,r,&a,&b);
      |         ^~~~~~
      |         MinMax
gap.cpp:40:1: warning: control reaches end of non-void function [-Wreturn-type]
   40 | }
      | ^