#include <iostream>
#include <vector>
using namespace std;
const int N=1e6+2;
vector<int> ma[N];
int dp[N]; // dp[x] = def = what is the minimum number of step(Of Kalu ustad) return back to x,such that the subtree of x are the only cities you can go to
int n,t,m;
void dfs(int x,int p=-1)
{
if(x==t)
return;
int total=0;
for(auto y:ma[x])
{
if(y!=p)
{
dfs(y,x);
total++;
}
}
int mx=0;
int mx2=0;
for(auto y:ma[x])
{
if(y!=p)
{
if(dp[y]>mx)
{
mx2=mx;
mx=dp[y];
}
else if(dp[y]>mx2)
{
mx2=dp[y];
}
}
}
dp[x]=mx2+total-(x==m);
}
int main()
{
cin>>n>>t>>m;
for(int i=1;i<n;i++)
{
int x,y;
cin>>x>>y;
ma[x].push_back(y);
ma[y].push_back(x);
}
dfs(m);
cout<<dp[m]<<endl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
25432 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
570 ms |
58888 KB |
Output is correct |
2 |
Correct |
676 ms |
67948 KB |
Output is correct |
3 |
Correct |
911 ms |
73376 KB |
Output is correct |
4 |
Correct |
431 ms |
50272 KB |
Output is correct |
5 |
Correct |
893 ms |
73460 KB |
Output is correct |
6 |
Correct |
921 ms |
73428 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
25432 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
25432 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |