Submission #8888

# Submission time Handle Problem Language Result Execution time Memory
8888 2014-09-23T13:42:43 Z ho94949 Gondola (IOI14_gondola) C++
Compilation error
0 ms 0 KB
#include <algorithm>
#include "gondola.h"
using namespace std;

int valid(int n, int inputSeq[]){
	bool x[250000];
	memset(x,sizeof(x),0);
	int firstoffset=-1;
	for(int i=0;i<n;i++){
		if(inputSeq[i]<=n){
			if(firstoffset==-1)
				firstoffset=(inputSeq[i]-i+n)%n;
			else	
				if(firstoffset!=(inputSeq[i]-i+n)%n)
					return 0;
		}else{
			if(x[i]) return 0;
			x[i]=true;
		}
	}
	return 1;
}

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

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

Compilation message

gondola.cpp: In function 'int valid(int, int*)':
gondola.cpp:7:22: error: 'memset' was not declared in this scope