# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
315056 | 2020-10-22T01:45:55 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); }