Submission #636783

#TimeUsernameProblemLanguageResultExecution timeMemory
636783lovrotGap (APIO16_gap)C++11
Compilation error
0 ms0 KiB
#include "gap.h"
#include <bits/stdc++.h>

using namespace std;

const int N = 3 * 1e5 + 10;
ll niz[N];

ll findGap(int t, int n){ 
	int minp = 0;
	int maxp = n - 1;
	ll mn = 0, minr;
	ll mx = INF, maxr;

	while(minp <= maxp){ 
		MinMax(mn, mx, minr, maxr);
		niz[minp] = minr;
		niz[maxp] = maxr;
		mn = minr + 1;
		mx = maxr - 1; 
		minp++;
		maxp--;
	}

	ll ans = 0;
	for(int i = 0; i < n - 1; i++) ans = max(ans, niz[i + 1] - niz[i]);
	return ans; 
}

Compilation message (stderr)

gap.cpp:7:1: error: 'll' does not name a type
    7 | ll niz[N];
      | ^~
gap.cpp:9:1: error: 'll' does not name a type
    9 | ll findGap(int t, int n){
      | ^~