제출 #405235

#제출 시각아이디문제언어결과실행 시간메모리
405235enerelt14Gap (APIO16_gap)C++14
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h>
using namespace std;
long long findGap(int T,int N){
	long long l[N], r[N], res=0;
	MinMax(0, 1e18, &l[1], &r[1]);
	for (int i=2;i<=(N+1)/2;i++){
		MinMax(l[i-1], r[i-1], &l[i], &r[i]);
		res=max(res, max(l[i]-l[i-1], r[i-1]-r[i]));
	}
	return res;
}

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

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:5:2: error: 'MinMax' was not declared in this scope
    5 |  MinMax(0, 1e18, &l[1], &r[1]);
      |  ^~~~~~