Submission #220173

#TimeUsernameProblemLanguageResultExecution timeMemory
220173kshitij_sodaniCluedo (IOI10_cluedo)C++17
Compilation error
0 ms0 KiB
#include <iostream>
#include <vector>
#include <algorithm>
#include <cassert>
#include <cstdio>
#include <cluedo.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 (stderr)

cluedo.cpp: In function 'void solve()':
cluedo.cpp:16:10: error: 'Theory' was not declared in this scope
   int xx=Theory(i,j,k);
          ^~~~~~
cluedo.cpp:16:10: note: suggested alternative: 'short'
   int xx=Theory(i,j,k);
          ^~~~~~
          short