Submission #376693

#TimeUsernameProblemLanguageResultExecution timeMemory
376693lakshith_Gondola (IOI14_gondola)C++14
Compilation error
0 ms0 KiB
#include "gondola.h"

bool b[2500010];

int checkOnce(int n,int vec[]){
	for(int i=0;i<n;i++)
		if(b[vec[i]])return 0;
		else b[vec[i]]=true;
	return 1;
}

int valid(int n, int vec[])
{
  	if(!checkOnce(n,vec))return 0;
	int MIN=INT_MAX,minI=0;
	for(int i=0;i<n;i++)if(MIN>vec[i])MIN=vec[i],minI=i;
	int p = MIN;
	int pos = minI;
	if(MIN>n)return 1;
	for(int k=0;k<n;k++){
		if(vec[pos]<=n && vec[pos]!=p)return 0;
		pos++;
		p++;
		pos%=n;
	}
	return 1;
}

//----------------------

int replacement(int n, int gondolaSeq[], int replacementSeq[])
{
  return -2;
}

//----------------------

int countReplacement(int n, int inputSeq[])
{
  return -3;
}

Compilation message (stderr)

gondola.cpp: In function 'int valid(int, int*)':
gondola.cpp:15:10: error: 'INT_MAX' was not declared in this scope
   15 |  int MIN=INT_MAX,minI=0;
      |          ^~~~~~~
gondola.cpp:2:1: note: 'INT_MAX' is defined in header '<climits>'; did you forget to '#include <climits>'?
    1 | #include "gondola.h"
  +++ |+#include <climits>
    2 | 
gondola.cpp:16:47: error: 'minI' was not declared in this scope
   16 |  for(int i=0;i<n;i++)if(MIN>vec[i])MIN=vec[i],minI=i;
      |                                               ^~~~
gondola.cpp:18:12: error: 'minI' was not declared in this scope
   18 |  int pos = minI;
      |            ^~~~