Submission #220174

# Submission time Handle Problem Language Result Execution time Memory
220174 2020-04-07T07:56:38 Z kshitij_sodani Cluedo (IOI10_cluedo) C++17
Compilation error
0 ms 0 KB
#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
#include <cstdio>
#include <cluedo.h>
#include <grader.h>

using namespace std;
#define pb push_back
#define a first
#define b second
void solve(){
	int i=1;
	int j=1;
	int k=1;
	while(true){
		int xx=Theory(i,j,k);
		if(xx==0){
			return;
		}
		if(xx==1){
			i+=1;
		}
		if(xx==2){
			j+=1;
		}
		if(xx==3){
			k+=1;
		}
	}	
}

Compilation message

/tmp/cc3RTOOy.o: In function `main':
grader.c:(.text.startup+0x31): undefined reference to `Solve()'
collect2: error: ld returned 1 exit status