제출 #162058

#제출 시각아이디문제언어결과실행 시간메모리
162058impriGap (APIO16_gap)C++14
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h>

using namespace std;
long long res[100001];
long long findGap(int T,long long N){
long long  mi,ma;
long long *mn,*mx;
*mn=mi;
*mx=ma;
MinMax(1,10e18,mn,mx);
res[1]=mi;
res[N]=ma;
int curmi=2;
int curma=N-1;
while(1){
    if(curmi>curma)break;
    MinMax(res[curmi-1]+1,res[curma+1]-1,mn,mx);
    res[curmi]=mi;
    res[curma]=ma;
}
ll r=2LL*10e18;
for(int i=1;i<N-1;i++){
    res=min(r,res[i+1]-res[i]);
}
return res;
}



컴파일 시 표준 에러 (stderr) 메시지

gap.cpp: In function 'long long int findGap(int, long long int)':
gap.cpp:10:1: error: 'MinMax' was not declared in this scope
 MinMax(1,10e18,mn,mx);
 ^~~~~~
gap.cpp:10:1: note: suggested alternative: 'rindex'
 MinMax(1,10e18,mn,mx);
 ^~~~~~
 rindex
gap.cpp:21:1: error: 'll' was not declared in this scope
 ll r=2LL*10e18;
 ^~
gap.cpp:23:13: error: 'r' was not declared in this scope
     res=min(r,res[i+1]-res[i]);
             ^
gap.cpp:25:8: error: invalid conversion from 'long long int*' to 'long long int' [-fpermissive]
 return res;
        ^~~