This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int maxn = 120'001, mbit = 18;
int n, m;
int dth[maxn];
int S[maxn], T[maxn];
vector <vector <int> > G;
vector <int> Si, Ti;
vector <int> w;
vector <vector <int> > g;
vector <int> stp;
void dfs_pa(int u = 1){
for(auto v : G[u]){
if(v != stp[u]){
stp[v] = u;
dth[v] = dth[u] + 1;
dfs_pa(v);
}
}
}
bool dfs_loop(int u){
if(w[u] == 1) return 1;
if(w[u] == 2) return 0;
w[u] = 1;
for(auto v : g[u]){
if(dfs_loop(v)) return 1;
}
w[u] = 2;
return 0;
}
bool sol(){
cin >> n;
G.assign(n + 1, vector<int>());
stp.assign(n + 1, 0);
for(int i = 1; i < n; i++){
int u, v;
cin >> u >> v;
G[u].push_back(v);
G[v].push_back(u);
}
dth[1] = 0;
dfs_pa();
//===============
cin >> m;
g.assign(m + 1, vector<int>());
Si.assign(n + 1, -1);
Ti.assign(n + 1, -1);
for(int i = 0; i < m; i++){
cin >> S[i] >> T[i];
Si[S[i]] = i;
Ti[T[i]] = i;
}
for(int i = 0; i < m; i++){
int u = S[i], v = T[i];
while(u != v){
if(dth[u] < dth[v]) swap(u, v);
u = stp[u];
int s = Si[u], t = Ti[u];
if(s != -1 && s != i) g[i].push_back(s);
if(t != -1 && t != i) g[t].push_back(i);
}
}
w.assign(m + 1, 0);
for(int i = 0; i < m; i++){
if(dfs_loop(i)) return 0;
}
return 1;
}
int main(){
int Q;
ios::sync_with_stdio(0);
cin.tie(0);
cin >> Q;
while(Q--){
cout << (sol() ? "Yes\n" : "No\n");
}
return 0;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |