Submission #315048

#TimeUsernameProblemLanguageResultExecution timeMemory
315048SeanliuCONSUL (info1cup19_consul)C++14
Compilation error
0 ms0 KiB
#include "grader.h"

int seed = 101;

inline int rnd(){
	return seed = (seed * 3 + 1) % 0xdefaced;
}

void solve(int N){
	for(int i = 0; i < 30; i++){
		int r = rnd() % N + 1;
		int v = getkth(r);
		int c = cnt(v);
		if(c > N / 3){
			say_answer(c);
			return;
		}
	}
	say_answer(-1);
}

Compilation message (stderr)

consul.cpp: In function 'void solve(int)':
consul.cpp:12:11: error: 'getkth' was not declared in this scope
   12 |   int v = getkth(r);
      |           ^~~~~~