#include <bits/stdc++.h>
#include <map>
#include "grader.h"
using namespace std;
void solve(int n)
{
srand(time(0));
map <int,int> mp;
vector <int> used(n);
set <int> s;
for(int i = 0; i< n; i ++) s.insert(i);
for(int i = 0; i < 30; i ++) {
int val = rand() % n;
if(used[val]) {
val = *(s.begin());
}
int k = kth(val+1);
if(cnt(k) > n/3) {
say_answer(k);
return;
}
s.erase(s.find(val));
mp[k] ++;
}
say_answer(-1);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
328 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
328 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
456 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |