답안 #315057

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
315057 2020-10-22T01:46:10 Z Seanliu CONSUL (info1cup19_consul) C++14
컴파일 오류
0 ms 0 KB
#include "grader.h"
//#include <iostream>
using namespace std;
int seed = 101;

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

void solve(int N){
	for(int i = 0; i < min(30, N / 2); i++){
		int r = rnd() % N + 1;
		int v = kth(r);
		int c = cnt(v);
		//cout << "loc = " << r << ", val = " << v << ", cnt = " << c << endl;
		if(c > (N / 3)){
			say_answer(v);
			return;
		}
	}
	say_answer(-1);
}

Compilation message

consul.cpp: In function 'void solve(int)':
consul.cpp:11:21: error: 'min' was not declared in this scope
   11 |  for(int i = 0; i < min(30, N / 2); i++){
      |                     ^~~