Submission #118813

# Submission time Handle Problem Language Result Execution time Memory
118813 2019-06-19T22:25:21 Z ly20 Gondola (IOI14_gondola) C++17
Compilation error
0 ms 0 KB
#include<bits/stdc++.h>
using namespace std;
const int INF=1123456789;
#include "gondola.h"
int valid(int n,vector<int> seq)
{
	int min=INF,at=INF,at2=INF;
	int st=0;
	int vl=1;
	for(int i=0;i<n;i++)
	{
		if(st==0)
		{
			if(seq[i]<at && seq[i]<=n && at==INF)
			{
				at=seq[i];min=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]>min || seq[i]>at)vl=0;
			at2=seq[i];
		}
	}	
	return vl;
}

Compilation message

/tmp/ccj8it4Q.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