답안 #118817

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
118817 2019-06-19T22:31:14 Z ly20 곤돌라 (IOI14_gondola) C++17
컴파일 오류
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std;
const int INF=1123456789;
#include "gondola.h"
bool valid(int n,vector<int> seq)
{
	int mn=INF,at=INF,at2=INF;
	int st=0;
	bool vl=1;
	for(int i=0;i<n;i++)
	{
		if(st==0)
		{
			if(seq[i]<at && seq[i]<=n && at==INF)
			{
				at=seq[i];mn=seq[i];
			}
			else if(seq[i]<at && seq[i]<=n)
			{
				at2=seq[i];st=1;
			}
			else at=seq[i];
		}
		else
		{
			if(seq[i]>n)continue;
			if(seq[i]<at2 || seq[i]>mn || seq[i]>at)vl=0;
			at2=seq[i];
		}
	}	
	return vl;
}
int replacement(int n, vector<int> gondolaseq,vector<int> replacementseq)
{
	return 0;
}
int countReplacement(int n,vector<int> inputSeq)
{
	return 0;
}

Compilation message

/tmp/ccVFc5nu.o: In function `main':
grader.cpp:(.text.startup+0xc3): undefined reference to `countReplacement'
grader.cpp:(.text.startup+0xe2): undefined reference to `valid'
grader.cpp:(.text.startup+0x106): undefined reference to `replacement'
collect2: error: ld returned 1 exit status