#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int N, t, m;
cin >> N >> t >> m;
t--, m--;
vector<vector<int>> adj(N);
for (int i = 0; i < N - 1; i++) {
int x, y;
cin >> x >> y;
x--, y--;
adj[x].push_back(y);
adj[y].push_back(x);
}
vector<int> p(N, -1);
queue<int> q;
p[m] = m;
q.push(m);
while (!q.empty()) {
int x = q.front();
q.pop();
for (int y : adj[x]) {
if (p[y] == -1) {
p[y] = x;
q.push(y);
}
}
}
vector<int> path{t};
while (path.back() != m) {
path.push_back(p[path.back()]);
}
vector<bool> in(N);
for (int x : path) {
in[x] = 1;
}
vector<int> f(N);
auto dfs = [&](auto dfs, int x, int p) -> void {
vector<int> s;
for (int y : adj[x]) {
if (y == p || in[y]) {
continue;
}
dfs(dfs, y, x);
s.push_back(f[y]);
}
sort(s.rbegin(), s.rend());
if (s.empty()) {
return;
}
if (s.size() == 1) {
f[x] = 1;
return;
}
f[x] = s[1] + s.size();
};
vector<vector<int>> ch(N);
for (int x : path) {
for (int y : adj[x]) {
if (!in[y]) {
ch[x].push_back(y);
}
}
dfs(dfs, x, -1);
}
cout << f[path[1]] << "\n";
return 6/22;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
320 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
275 ms |
101504 KB |
Output is correct |
2 |
Correct |
293 ms |
91536 KB |
Output is correct |
3 |
Correct |
914 ms |
101196 KB |
Output is correct |
4 |
Correct |
349 ms |
50576 KB |
Output is correct |
5 |
Correct |
792 ms |
101204 KB |
Output is correct |
6 |
Correct |
870 ms |
101196 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
320 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
320 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |