제출 #8888

#제출 시각아이디문제언어결과실행 시간메모리
8888ho94949곤돌라 (IOI14_gondola)C++98
컴파일 에러
0 ms0 KiB
#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;
}

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

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