이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#pragma GCC optimize("Ofast,unroll-loops")
#include <bits/stdc++.h>
using namespace std;
typedef long long llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
#define endl '\n'
#include "grader.h"
void solve(int n){
mt19937 rng;
rng=mt19937(chrono::steady_clock::now().time_since_epoch().count());
set<int> ss;
for(int i=0;i<n;i++){
ss.insert(i+1);
}
for(int i=0;i<30;i++){
vector<int> tt;
for(auto j:ss){
tt.pb(j);
}
if(tt.size()==0){
break;
}
int xx=rng()%(tt.size());
int x=kth(tt[xx]);
if(cnt(x)>n/3){
say_answer(x);
return;
}
ss.erase(tt[xx]);
}
say_answer(-1);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |