Submission #1011654

#TimeUsernameProblemLanguageResultExecution timeMemory
1011654ezzzayGap (APIO16_gap)C++14
Compilation error
0 ms0 KiB
#include "gap.h" #include<bits/stdc++.h> using namespace std; #define ll long long #define pb push_back const int MN=2e6; ll arr[MN]; long long findGap(int T, int N){ int l=0,r=N-1; ll s=0,t=1e18; while(1){ ll &mn,&mx; MinMax(s,t,mn,mx); arr[l]=mn; arr[r]=mx; l++; r--; if(l+1==r or l==r)break; } ll ans=0; for(int i=1;i<N;i++){ ans=max(ans,arr[i]-arr[i-1]); } return ans; }

Compilation message (stderr)

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:12:7: error: 'mn' declared as reference but not initialized
   12 |   ll &mn,&mx;
      |       ^~
gap.cpp:12:11: error: 'mx' declared as reference but not initialized
   12 |   ll &mn,&mx;
      |           ^~
gap.cpp:13:14: error: invalid conversion from 'long long int' to 'long long int*' [-fpermissive]
   13 |   MinMax(s,t,mn,mx);
      |              ^~
      |              |
      |              long long int
In file included from gap.cpp:1:
gap.h:1:35: note:   initializing argument 3 of 'void MinMax(long long int, long long int, long long int*, long long int*)'
    1 | void MinMax(long long, long long, long long*, long long*);
      |                                   ^~~~~~~~~~
gap.cpp:13:17: error: invalid conversion from 'long long int' to 'long long int*' [-fpermissive]
   13 |   MinMax(s,t,mn,mx);
      |                 ^~
      |                 |
      |                 long long int
In file included from gap.cpp:1:
gap.h:1:47: note:   initializing argument 4 of 'void MinMax(long long int, long long int, long long int*, long long int*)'
    1 | void MinMax(long long, long long, long long*, long long*);
      |                                               ^~~~~~~~~~