이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "meetings.h"
#include <bits/stdc++.h>
using namespace std;
mt19937 rnd(time(0));
const int N=2005;
int n;
void ans(int a,int b){
if(a>b)swap(a,b);
Bridge(a,b);
}
void dfs(int k,vector<int> &r){
int sz=r.size();
if(sz==0)return;
int k1=r[rnd()%sz];
vector<int> rec(n),adj[n];
vector<int> path;
for(int j:r){
if(j==k1)continue;
int lca=Query(k,k1,j);
if(lca==j){
rec[j]=1;
path.push_back(j);
}
else{
adj[lca].push_back(j);
}
}
sort(path.begin(),path.end(),[&](int a,int b){return Query(k,a,b)==a;});
path.push_back(k1);
int last=k;
for(int j:path){
ans(last,j);
last=j;
}
for(int j:path){
dfs(j,adj[j]);
}
dfs(k,adj[k]);
}
void Solve(int n1) {
n=n1;
int k=rnd()%n;
vector<int> t;
for(int i=0;i<n;i++){
if(i!=k)t.push_back(i);
}
dfs(k,t);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |