#include <bits/stdc++.h>
using namespace std;
const int nx=3e5+5, kx=19, mod=1e9+7;
int n, m, u, v, lvl[nx], pa[nx][kx], a, b, dp[nx], vs[nx], c[nx], cnt, f, res=1;
vector<int> d[nx];
vector<pair<int, int>> t[nx];
void dfs(int u, int p)
{
lvl[u]=lvl[p]+1;
pa[u][0]=p;
for (int i=1; i<kx; i++) pa[u][i]=pa[pa[u][i-1]][i-1];
for (auto v:d[u]) if (v!=p) dfs(v, u);
}
int lca(int u, int v)
{
if (lvl[u]>lvl[v]) swap(u, v);
for (int i=kx-1; i>=0; i--) if (lvl[pa[v][i]]>=lvl[u]) v=pa[v][i];
if (u==v) return u;
for (int i=kx-1; i>=0; i--) if (pa[u][i]!=pa[v][i]) u=pa[u][i], v=pa[v][i];
return pa[u][0];
}
void dfs2(int u, int p)
{
for (auto v:d[u]) if (v!=p) dfs2(v, u), dp[u]+=dp[v];
if (dp[u]!=0)
{
for (auto v:d[u]) if (v!=p&&dp[v]!=0) t[v].push_back({u, 0}), t[u].push_back({v, 0}), cout<<"edge "<<u<<' '<<v<<'\n';
}
}
void dfs3(int u)
{
//cout<<"node "<<u<<' '<<c[u]<<'\n';
vs[u]=1;
for (auto [v, s]:t[u])
{
if (vs[v]&&s==0&&c[v]!=c[u]) f=1;
if (vs[v]&&s==1&&c[v]==c[u]) f=1;
if (vs[v]) continue;
if (s==0) c[v]=c[u], dfs3(v);
if (s==1) c[v]=(1-c[u]), dfs3(v);
}
}
int main()
{
cin.tie(NULL)->sync_with_stdio(false);
cin>>n>>m;
for (int i=1; i<n; i++) cin>>u>>v, d[u].push_back(v), d[v].push_back(u);
dfs(1, 1);
for (int i=1; i<=m; i++)
{
cin>>a>>b;
int l=lca(a, b);
dp[a]++;
dp[b]++;
dp[l]-=2;
//cout<<"lca "<<a<<' '<<b<<' '<<l<<'\n';
if (l!=a&&l!=b) t[a].push_back({b, 1}), t[b].push_back({a, 1});
}
dfs2(1, 1);
for (int i=2; i<=n; i++)
{
if (vs[i]) continue;
//cout<<"root "<<i<<'\n';
cnt++;
c[i]=0;
dfs3(i);
if (f) return cout<<0, 0;
}
return cout<<0, 0;
for (int i=1; i<=cnt; i++) res=(res*2)%mod;
cout<<res;
}
/*
5 2
1 2
2 3
3 4
4 5
3 4
2 5
5 2
1 2
2 3
1 4
4 5
3 4
1 5
4 3
2 1
2 3
2 4
1 3
1 4
3 4
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
100 ms |
44884 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
216 ms |
89940 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
19036 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
5 ms |
19036 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
10 ms |
19292 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
19292 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
331 ms |
55076 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
329 ms |
59728 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
347 ms |
59932 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
321 ms |
60576 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |