#include "Joi.h"
#include<bits/stdc++.h>
using namespace std;
#define vi vector<int>
#define REP(i,n) for(int i = 0; i < n; i ++)
#define FOR(i,a,b) for(int i = a; i < b; i ++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define mii map<int,int>
#define F first
#define S second
#ifdef TRACE
#define trace(...) __f(#__VA_ARGS__, __VA_ARGS__)
template <typename Arg1>
void __f(const char* name, Arg1&& arg1){
cout << name << " : " << arg1 << std::endl;
}
template <typename Arg1, typename... Args>
void __f(const char* names, Arg1&& arg1, Args&&... args){
const char* comma = strchr(names + 1, ',');cout.write(names, comma - names) << " : " << arg1<<" | ";__f(comma+1, args...);
}
#else
#define trace(...)
#endif
static const int MX = 10005;
static vi g[MX],adj[MX];
static int par[MX],dep[MX];
static bitset<MX> vis;
static int n,ind[MX];
static vi subgraph[MX];
static vi cc;
static void findtree(int u){
// trace(u,cc.size());
if(cc.size() < 60){
ind[u] = cc.size();
cc.pb(u);
}
vis[u] = 1;
for(auto v:g[u]){
if(!vis[v]){
adj[u].pb(v);
par[v] = u;
dep[v] = 1+dep[u];
findtree(v);
}
}
}
static void dfs(int u){
if(ind[u] == -1){
mii deg;
for(auto x:subgraph[par[u]]){
for(auto y:subgraph[par[u]]){
if(binary_search(all(adj[x]),y)){
deg[x]++;
deg[y]++;
}
}
}
for(auto x:deg){
if(x.S == 1 and x.F != par[u]){
ind[u] = ind[x.F];
for(auto y:subgraph[par[u]]){
if(x.F != y) subgraph[u].pb(y);
}
subgraph[u].pb(u);
break;
}
}
}
for(auto v:adj[u]){
dfs(v);
}
}
void Joi(int N, int M, int A[], int B[], long long X, int T){
n = N;
REP(i,M){
g[A[i]].pb(B[i]);
g[B[i]].pb(A[i]);
}
REP(i,n+2) ind[i] = -1;
par[0] = 0;
dep[0] = 0;
findtree(0);
for(auto x:cc) subgraph[x] = cc;
REP(i,n) sort(all(adj[i]));
dfs(0);
REP(i,n) trace(i,ind[i],((X>>ind[i])&1));
REP(i,n) MessageBoard(i,((X>>ind[i])&1));
}
#include "Ioi.h"
#include<bits/stdc++.h>
using namespace std;
#define vi vector<int>
#define REP(i,n) for(int i = 0; i < n; i ++)
#define FOR(i,a,b) for(int i = a; i < b; i ++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define mii map<int,int>
#define F first
#define S second
#ifdef TRACE
#define trace(...) __f(#__VA_ARGS__, __VA_ARGS__)
template <typename Arg1>
void __f(const char* name, Arg1&& arg1){
cout << name << " : " << arg1 << std::endl;
}
template <typename Arg1, typename... Args>
void __f(const char* names, Arg1&& arg1, Args&&... args){
const char* comma = strchr(names + 1, ',');cout.write(names, comma - names) << " : " << arg1<<" | ";__f(comma+1, args...);
}
#else
#define trace(...)
#endif
static const int MX = 10005;
static vi g[MX],adj[MX];
static int par[MX],dep[MX];
static bitset<MX> vis;
static int n,ind[MX];
static vi subgraph[MX];
static vi cc;
static void findtree(int u){
if(cc.size() < 60){
ind[u] = cc.size();
cc.pb(u);
}
vis[u] = 1;
for(auto v:g[u]){
if(!vis[v]){
adj[u].pb(v);
par[v] = u;
dep[v] = 1+dep[u];
findtree(v);
}
}
}
static void dfs(int u){
if(ind[u] == -1){
mii deg;
for(auto x:subgraph[par[u]]){
for(auto y:subgraph[par[u]]){
if(binary_search(all(adj[x]),y)){
deg[x]++;
deg[y]++;
}
}
}
for(auto x:deg){
if(x.S == 1 and x.F != par[u]){
ind[u] = ind[x.F];
for(auto y:subgraph[par[u]]){
if(x.F != y) subgraph[u].pb(y);
}
subgraph[u].pb(u);
break;
}
}
}
for(auto v:adj[u]){
dfs(v);
}
}
static long long ans = 0;
static void calc(int u){
vis[u] = 1;
for(auto v:adj[u]){
if(vis[v]) continue;
if(!binary_search(all(cc),v)) continue;
ans |= (1<<ind[v])*Move(v);
trace(v,ans);
calc(v);
ans |= (1<<ind[u])*Move(u);
trace(u,ans);
}
if(u == 0) return;
int v = par[u];
if(vis[v]) return;
if(!binary_search(all(cc),v)) return;
ans |= (1<<ind[v])*Move(v);
trace(v,ans);
calc(v);
ans |= (1<<ind[u])*Move(u);
trace(u,ans);
}
long long Ioi(int N, int M, int A[], int B[], int P, int V, int T) {
n = N;
REP(i,M){
g[A[i]].pb(B[i]);
g[B[i]].pb(A[i]);
}
REP(i,n+2) ind[i] = -1;
par[0] = 0;
dep[0] = 0;
findtree(0);
for(auto x:cc) subgraph[x] = cc;
REP(i,n) sort(all(adj[i]));
dfs(0);
vis.reset();
sort(all(subgraph[P]));
cc = subgraph[P];
calc(P);
trace(ans);
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
2200 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
763 ms |
12544 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
2436 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
770 ms |
12528 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
752 ms |
12372 KB |
Wrong Answer [7] |
2 |
Halted |
0 ms |
0 KB |
- |