# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
522239 | amunduzbaev | Costinland (info1cup19_costinland) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#include "grader.h"
#ifndef EVAL
#include "grader.cpp"
#endif
void solve(int n){
if(n <= 50){
map<int, int> mm;
for(int i=1;i<=n;i++){
int v = kth(i);
mm[v]++;
}
for(auto x : mm){
if(x.second > n / 3){
say_answer(x.first);
return;
}
} say_answer(-1);
return;
}
for(int i=0;i<30;i++){
int p = rand() % n + 1;
int v = kth(p);
int c = cnt(v);
if(c > n / 3) { say_answer(v); return; }
} say_answer(-1); return;
}