제출 #32434

#제출 시각아이디문제언어결과실행 시간메모리
32434aomeAmusement Park (JOI17_amusement_park)C++14
0 / 100
13 ms5908 KiB
#include <bits/stdc++.h> #include "Joi.h" using namespace std; const int N = 10005; static int num; static int in[N], pos[N]; static int color[N]; static int have[60]; static bool visit[N]; static vector<int> G[N]; static vector<int> go[N]; static void dfs(int u) { in[u] = num, pos[u] = go[num].size(), go[num].push_back(u); for (auto v : G[u]) { if (go[num].size() == 60) return; if (in[v]) continue; dfs(v); } } static void redfs(int u, int x, int need) { visit[u] = 1; for (auto v : G[u]) { if (!need) return; if (visit[v]) continue; if (pos[v] != x) have[pos[v]] = v, need--; redfs(v, x, need); } } void Joi(int n, int m, int a[], int b[], long long x, int t) { for (int i = 0; i < m; ++i) { G[a[i]].push_back(b[i]), G[b[i]].push_back(a[i]); } for (int i = 0; i < n; ++i) { if (in[i]) continue; ++num, dfs(i); } memset(color, -1, sizeof color); for (int i = 1; i <= num; ++i) { if (go[i].size() != 60) continue; for (int j = 0; j < 60; ++j) { color[go[i][j]] = x >> j & 1; } for (int j = 0; j < 60; ++j) { vector<int> tmp; int u = go[i][j]; for (auto v : G[u]) { if (in[u] == in[v]) tmp.push_back(v); } G[u] = tmp; } } for (int i = 1; i <= num; ++i) { if (go[i].size() == 60) continue; memset(have, 0, sizeof have); redfs(go[i][0], i, 60 - go[i].size()); vector<int> tmp; for (int j = 0; j < 60; ++j) { if (have[j]) { tmp.push_back(have[j]); continue; } tmp.push_back(go[i].back()), go[i].pop_back(); } go[i] = tmp; for (int j = 0; j < 60; ++j) { color[go[i][j]] = x >> j & 1; if (have[j]) visit[have[j]] = 0; } } for (int i = 0; i < n; ++i) { MessageBoard(i, color[i]); } }
#include "Ioi.h" #include <bits/stdc++.h> using namespace std; const int N = 10005; static int num; static int in[N], pos[N]; static int have[60]; long long res; static bool visit[N]; bool ok[N]; static vector<int> G[N]; static vector<int> go[N]; static void dfs(int u) { in[u] = num, pos[u] = go[num].size(), go[num].push_back(u); for (auto v : G[u]) { if (go[num].size() == 60) return; if (in[v]) continue; dfs(v); } } static void redfs(int u, int x, int need) { visit[u] = 1; for (auto v : G[u]) { if (!need) return; if (visit[v]) continue; if (pos[v] != x) have[pos[v]] = v, need--; redfs(v, x, need); } } void solve(int u) { for (auto v : G[u]) { if (!ok[v] || visit[v]) continue; visit[v] = 1, res += (1LL << pos[v]) * Move(v), solve(v), Move(u); } } long long Ioi(int n, int m, int a[], int b[], int p, int v, int t) { for (int i = 0; i < m; ++i) { G[a[i]].push_back(b[i]), G[b[i]].push_back(a[i]); } for (int i = 0; i < n; ++i) { if (in[i]) continue; ++num, dfs(i); } for (int i = 1; i <= num; ++i) { if (go[i].size() != 60) continue; for (int j = 0; j < 60; ++j) { vector<int> tmp; int u = go[i][j]; for (auto v : G[u]) { if (in[u] == in[v]) tmp.push_back(v); } G[u] = tmp; } } for (int i = 1; i <= num; ++i) { if (go[i].size() == 60) continue; memset(have, 0, sizeof have); redfs(go[i][0], i, 60 - go[i].size()); vector<int> tmp; for (int j = 0; j < 60; ++j) { if (have[j]) { tmp.push_back(have[j]); continue; } tmp.push_back(go[i].back()), go[i].pop_back(); } go[i] = tmp; for (int j = 0; j < 60; ++j) { if (have[j]) visit[have[j]] = 0; } } memset(visit, 0, sizeof visit); for (int i = 0; i < 60; ++i) { ok[go[in[p]][i]] = 1; } res += (1LL << pos[p]) * v, visit[p] = 1, solve(p); return res; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...