Submission #776253

#TimeUsernameProblemLanguageResultExecution timeMemory
776253eltu0815Jail (JOI22_jail)C++14
21 / 100
5066 ms3916 KiB
#include <bits/stdc++.h> #define MAX 500005 #define MOD (ll)(1e9+7) #define INF (ll)(1e18) using namespace std; typedef long long ll; typedef pair<ll, ll> pll; typedef pair<int, int> pii; int n, m, tt; int parent[120005][25]; int s[120005], t[120005], dep[120005], visited[120005]; vector<int> graph[120005]; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cin >> tt; while(tt--) { cin >> n; for(int i = 1; i <= n; ++i) graph[i].clear(); for(int i = 1; i <= n; ++i) for(int j = 0; j <= 20; ++j) parent[i][j] = 0; for(int i = 1; i <= n - 1; ++i) { int a, b; cin >> a >> b; graph[a].push_back(b); graph[b].push_back(a); } cin >> m; for(int i = 1; i <= m; ++i) cin >> s[i] >> t[i]; auto dfs = [&](auto&& self, int node, int par) -> void { parent[node][0] = par; dep[node] = dep[par] + 1; for(auto v : graph[node]) if(v != par) self(self, v, node); }; dfs(dfs, 1, 0); for(int j = 1; j < 20; ++j) for(int i = 1; i <= n; ++i) parent[i][j] = parent[parent[i][j - 1]][j - 1]; auto LCA = [&](int u, int v) -> int { if(dep[u] < dep[v]) swap(u, v); int diff = dep[u] - dep[v], j = 0; while(diff) { if(diff & 1) u = parent[u][j]; diff >>= 1; ++j; } if(u == v) return u; for(int i = 19; i >= 0; --i) { if(parent[u][i] != parent[v][i]) { u = parent[u][i]; v = parent[v][i]; } } return parent[u][0]; }; auto path = [&](int s, int t) -> bool { while(s != t) { if(visited[s]) return false; s = parent[s][0]; } return !visited[s]; }; bool flag = false; vector<int> v(m); iota(v.begin(), v.end(), 1); do { bool tmp = true; for(int i = 1; i <= n; ++i) visited[i] = 0; for(auto i : v) visited[s[i]]++; for(auto i : v) { visited[s[i]]--; int p = LCA(s[i], t[i]); if(!path(s[i], p) || !path(t[i], p)) tmp = false; visited[t[i]]++; } flag |= tmp; } while(next_permutation(v.begin(), v.end())); if(flag) cout << "Yes\n"; else cout << "No\n"; } return 0; }
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...