# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
315047 | 2020-10-22T01:28:56 Z | daniel920712 | CONSUL (info1cup19_consul) | C++14 | 38 ms | 384 KB |
#include "grader.h" #include "grader.h" #include <map> #include <time.h> #include <algorithm> using namespace std; map < int , int > all; int how[1005]; void solve(int n) { srand(time(NULL)); all.clear(); int i,t,big=0,xx=n,x,y; if(n<=50) { for(i=1;i<=n;i++) { t=kth(i); all[t]++; big=max(big,all[t]); if(all[t]>n/3) { say_answer(t); return; } if(big+(n-i)<=n/3) { say_answer(-1); return; } } say_answer(-1); } else { for(i=0;i<n;i++) how[i]=i+1; random_shuffle(how,how+n); for(i=0;i<60;i++) { x=kth(how[0]); if(cnt(x)>n/3) { say_answer(x); return; } } say_answer(-1); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 38 ms | 256 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 384 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 256 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |