#include <bits/stdc++.h>
#include "lokahia.h"
using namespace std;
#define ll long long
#define fi first
#define se second
#define rep(x,s,e) for (auto x=s-(s>e);x!=e-(s>e);(s<e?x++:x--))
#define all(x) (x).begin(),(x).end()
#define sz(x) (int)(x).size()
mt19937 rng (chrono::system_clock::now().time_since_epoch().count());
const int trial=12; //test different startings
const int samples=30; //test different random places
int memo[205][205];
int get(int i,int j){
if (memo[i][j]!=-1) return memo[i][j];
return memo[i][j]=memo[j][i]=CollectRelics(i,j);
}
vector<int> shuf(vector<int> v){
rep(x,0,sz(v)){
swap(v[x],v[rng()%(x+1)]);
}
return v;
}
int FindBase(int n){
return -1;
memset(memo,-1,sizeof(memo));
if (n<=20){ //maybe
rep(root,0,n){
int cnt=1;
int ans=-1;
rep(x,0,n) if (x!=root){
int temp=get(root,x);
if (temp!=-1) cnt++,ans=max(ans,temp);
}
if (cnt>n/2) return ans;
}
return -1;
}
int best=-1;
int root;
vector<int> v;
rep(x,0,n) v.push_back(x);
shuf(v);
rep(x,0,trial){
int node=v[x];
int curr=0;
rep(zzz,0,samples){
int temp;
do{
temp=rng()%n;
} while (temp==node);
//cout<<"debug: "<<node<<" "<<temp<<endl;
if (get(node,temp)!=-1) curr++;
}
if (curr>best){
best=curr;
root=node;
}
}
int ans=-1;
int cnt=1;
rep(x,0,n) if (x!=root){
int temp=get(root,x);
if (temp!=-1) cnt++,ans=max(ans,temp);
}
//cout<<ans<<" "<<cnt<<endl;
if (cnt>n/2) return ans;
else return -1;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
640 KB |
Wrong |
2 |
Incorrect |
5 ms |
640 KB |
Wrong |
3 |
Correct |
5 ms |
640 KB |
Correct : C = 0 |
4 |
Incorrect |
5 ms |
640 KB |
Wrong |
5 |
Correct |
5 ms |
640 KB |
Correct : C = 0 |
6 |
Incorrect |
5 ms |
512 KB |
Wrong |
7 |
Incorrect |
6 ms |
640 KB |
Wrong |
8 |
Incorrect |
5 ms |
512 KB |
Wrong |
9 |
Correct |
5 ms |
512 KB |
Correct : C = 0 |
10 |
Correct |
5 ms |
640 KB |
Correct : C = 0 |
11 |
Correct |
5 ms |
768 KB |
Correct : C = 0 |
12 |
Incorrect |
5 ms |
640 KB |
Wrong |
13 |
Incorrect |
5 ms |
640 KB |
Wrong |
14 |
Correct |
5 ms |
640 KB |
Correct : C = 0 |
15 |
Incorrect |
5 ms |
640 KB |
Wrong |
16 |
Incorrect |
5 ms |
640 KB |
Wrong |
17 |
Incorrect |
5 ms |
640 KB |
Wrong |
18 |
Correct |
5 ms |
512 KB |
Correct : C = 0 |
19 |
Incorrect |
5 ms |
640 KB |
Wrong |
20 |
Incorrect |
5 ms |
640 KB |
Wrong |
21 |
Correct |
5 ms |
640 KB |
Correct : C = 0 |
22 |
Correct |
5 ms |
640 KB |
Correct : C = 0 |
23 |
Incorrect |
5 ms |
640 KB |
Wrong |
24 |
Incorrect |
6 ms |
640 KB |
Wrong |
25 |
Correct |
5 ms |
640 KB |
Correct : C = 0 |
26 |
Incorrect |
5 ms |
640 KB |
Wrong |
27 |
Correct |
5 ms |
640 KB |
Correct : C = 0 |