#include <bits/stdc++.h>
#define ll long long
#define all(aaa) aaa.begin(), aaa.end()
using namespace std;
const int N = 1e6 + 5;
vector<int> g[N];
int n, m, t;
int dfs(int node, int anc) {
int adj = g[node].size() - (anc != -1);
vector<int> v;
for (int to : g[node]) {
if (to != anc) {
v.push_back(dfs(to, node) + 1);
}
}
sort(v.rbegin(), v.rend());
if (v.empty())
return 0;
else if (v.size() == 1)
return 1;
return v[1] + adj - 1;
}
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(NULL);
cin >> n >> t >> m;
m--, t--;
for (int i = 0; i < n - 1; i++) {
int a, b;
cin >> a >> b;
a--, b--;
g[a].push_back(b);
g[b].push_back(a);
}
g[m].erase(find(all(g[m]), t));
cout << dfs(m, -1);
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
52 ms |
48248 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
468 ms |
55332 KB |
Output is correct |
2 |
Correct |
425 ms |
60768 KB |
Output is correct |
3 |
Correct |
1103 ms |
65052 KB |
Output is correct |
4 |
Correct |
493 ms |
46496 KB |
Output is correct |
5 |
Correct |
1033 ms |
64988 KB |
Output is correct |
6 |
Correct |
1020 ms |
65156 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
52 ms |
48248 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
52 ms |
48248 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |