답안 #42621

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
42621 2018-03-01T14:05:26 Z MatheusLealV Gap (APIO16_gap) C++14
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
#define N 100005
using namespace std;
typedef long long ll;

ll n, v[N], ans[N];

ll findGap(int T, int N_)
{
	n = N_;

	ll esq = 0, dir = 2000000000000000000LL, best = 0;

	for(int i = 1, st = 1, en = n; i <= (n + 1)/2; i++, st ++, en --)
	{
		ll a, b;

		MinMax(esq, dir, a, b);

		esq = a + 1, dir = b - 1;

		ans[st] = a, ans[en] = b;
	}

	for(int i = 1; i <= n; i++) best = max(best, ans[i] - ans[i - 1]);

	return best;
}

Compilation message

gap.cpp: In function 'll findGap(int, int)':
gap.cpp:18:24: error: 'MinMax' was not declared in this scope
   MinMax(esq, dir, a, b);
                        ^