#include <bits/stdc++.h>
using namespace std;
const int N=1e5+37;
vector<int> adj[N], adj2[N];
int huh, huuh, mod=1e9+7;
int mul(int x, int y){
return (x*y)%mod;
}
int poww(int x, int y)
{
if(y==0) return 1;
int tmp=poww(x, y/2);
if(y%2) return mul(tmp, mul(tmp, x));
return mul(tmp, tmp);
}
int dfs2(int v, int p, int d)
{
int f=1;
if(d%2==0) f=0;
int count=0, val=0;
for(auto i: adj2[v])
{
if(i==p) continue;
if(dfs2(i, v, d+1))
{
if(d%2==0){
f=1;
}
}
else
{
if(d%2) f=0;
}
}
return f;
}
int dfs(int v, int p, int d)
{
int f=1;
if(d%2==0) f=0;
int count=0, val=0;
for(auto i: adj[v])
{
if(i==p) continue;
if(dfs(i, v, d+1))
{
if(d%2==0){
f=1;
}
}
else
{
if(d%2) f=0;
}
}
if(huh==v)
{
if(dfs2(huuh, 0, d+1))
{
if(d%2==0) f=1;
}
else
{
if(d%2) f=0;
}
}
return f;
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int n, d; cin>>n>>d;
for(int i=0; i<n-1; i++){
int x, y; cin>>x>>y;
adj[x].push_back(y);
adj[y].push_back(x);
adj2[x].push_back(y);
adj2[y].push_back(x);
}
int ans=0;
if(n<=1e4)
{
for(int i=1; i<=n; i++)
{
for(int l=1; l<=n; l++)
{
huh=i;
huuh=l;
if(dfs(1, 0, 0)) ans++;
}
}
cout<<ans;
}
else
{
cout<<poww(2, d+1);
}
}
Compilation message
startrek.cpp: In function 'int dfs2(int, int, int)':
startrek.cpp:25:9: warning: unused variable 'count' [-Wunused-variable]
25 | int count=0, val=0;
| ^~~~~
startrek.cpp:25:18: warning: unused variable 'val' [-Wunused-variable]
25 | int count=0, val=0;
| ^~~
startrek.cpp: In function 'int dfs(int, int, int)':
startrek.cpp:57:9: warning: unused variable 'count' [-Wunused-variable]
57 | int count=0, val=0;
| ^~~~~
startrek.cpp:57:18: warning: unused variable 'val' [-Wunused-variable]
57 | int count=0, val=0;
| ^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4948 KB |
Output is correct |
2 |
Execution timed out |
1086 ms |
5076 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
4948 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4948 KB |
Output is correct |
2 |
Correct |
20 ms |
5032 KB |
Output is correct |
3 |
Correct |
24 ms |
5040 KB |
Output is correct |
4 |
Correct |
18 ms |
5028 KB |
Output is correct |
5 |
Correct |
16 ms |
4948 KB |
Output is correct |
6 |
Correct |
17 ms |
5028 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4948 KB |
Output is correct |
2 |
Correct |
20 ms |
5032 KB |
Output is correct |
3 |
Correct |
24 ms |
5040 KB |
Output is correct |
4 |
Correct |
18 ms |
5028 KB |
Output is correct |
5 |
Correct |
16 ms |
4948 KB |
Output is correct |
6 |
Correct |
17 ms |
5028 KB |
Output is correct |
7 |
Execution timed out |
1090 ms |
5152 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4948 KB |
Output is correct |
2 |
Correct |
20 ms |
5032 KB |
Output is correct |
3 |
Correct |
24 ms |
5040 KB |
Output is correct |
4 |
Correct |
18 ms |
5028 KB |
Output is correct |
5 |
Correct |
16 ms |
4948 KB |
Output is correct |
6 |
Correct |
17 ms |
5028 KB |
Output is correct |
7 |
Execution timed out |
1090 ms |
5152 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4948 KB |
Output is correct |
2 |
Correct |
20 ms |
5032 KB |
Output is correct |
3 |
Correct |
24 ms |
5040 KB |
Output is correct |
4 |
Correct |
18 ms |
5028 KB |
Output is correct |
5 |
Correct |
16 ms |
4948 KB |
Output is correct |
6 |
Correct |
17 ms |
5028 KB |
Output is correct |
7 |
Execution timed out |
1090 ms |
5152 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4948 KB |
Output is correct |
2 |
Correct |
20 ms |
5032 KB |
Output is correct |
3 |
Correct |
24 ms |
5040 KB |
Output is correct |
4 |
Correct |
18 ms |
5028 KB |
Output is correct |
5 |
Correct |
16 ms |
4948 KB |
Output is correct |
6 |
Correct |
17 ms |
5028 KB |
Output is correct |
7 |
Execution timed out |
1090 ms |
5152 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4948 KB |
Output is correct |
2 |
Execution timed out |
1086 ms |
5076 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |