#include "grader.h"
#include "bits/stdc++.h"
void solve(int n){
std::vector<int>ord(n);
for(int i=0; i<n; i++)
ord[i]=i+1;
std::mt19937 rng(std::chrono::steady_clock::now().time_since_epoch().count());
std::shuffle(ord.begin(),ord.end(),rng);
for(int i=0; i<std::min(n,30); i++){
int c=cnt(kth(ord[i]));
if(c>n/3) {
say_answer(ord[i]);
return;
}
}
say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
208 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
208 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
208 KB |
Wrong answer |
2 |
Halted |
0 ms |
0 KB |
- |