#include "bits/stdc++.h"
using namespace std;
#define ar array
typedef int64_t ll;
#define int ll
const int N = 1e6 + 5;
vector<int> edges[N];
int n, t, m, dp[N], is[N];
int c[N];
void dfs(int u, int p = -1){
is[u] = (u == t), c[u] = -1;
vector<int> t;
for(auto x : edges[u]){
if(x == p) continue;
dfs(x, u);
is[u] |= is[x];
if(!is[x]) t.push_back(x);
else c[u] = x;
}
sort(t.begin(), t.end(), [&](int& i, int& j){
return dp[i] > dp[j];
});
edges[u] = t;
if(t.empty()) dp[u] = 0;
else {
dp[u] = t.size();
if((int)t.size() > 1) dp[u] += dp[t[1]];
}
}
signed main(){
ios::sync_with_stdio(0); cin.tie(0);
cin>>n>>t>>m;
if(t == m){
cout<<0<<"\n";
return 0;
}
for(int i=1;i<n;i++){
int a, b; cin>>a>>b;
edges[a].push_back(b);
edges[b].push_back(a);
}
dfs(m);
int tot = 0, u = m;
vector<int> v;
while(u != t){
v.push_back(edges[u].size());
tot += edges[u].size();
u = c[u];
}
for(int i=(int)v.size() - 2;~i;i--){
v[i] += v[i+1];
}
auto check = [&](int mx){
int u = m, pos = 0, prev = 0, in = 0;
while(u != t){
pos++;
for(auto x : edges[u]){
if(dp[x] + prev + (in + 1 < (int)v.size() ? v[in + 1] : 0) > mx) pos--, prev++;
}
if(pos < 0) return false;
u = c[u];
}
return true;
};
int l = tot, r = 2e9;
while(l < r){
int m = (l + r) >> 1;
if(check(m)) r = m;
else l = m + 1;
}
//~ while(m != t){
//~ pos++;
//~ vector<int>& t = edges[m];
//~ sort(t.begin(), t.end(), [&](int& i, int& j){
//~ return dp[i] > dp[j];
//~ });
//~ if(pos >= (int)t.size()){
//~ pos -= (int)t.size();
//~ res += (int)t.size();
//~ } else {
//~ res += dp[t[pos]] + (int)t.size();
//~ pos = 1e9;
//~ }
//~ m = c[m];
//~ }
cout<<l<<"\n";
}
/*
8 7 1
1 2
2 3
3 4
3 5
3 6
4 7
4 8
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
16 ms |
23788 KB |
Output is correct |
2 |
Correct |
13 ms |
23804 KB |
Output is correct |
3 |
Correct |
13 ms |
23772 KB |
Output is correct |
4 |
Correct |
17 ms |
23888 KB |
Output is correct |
5 |
Correct |
16 ms |
23808 KB |
Output is correct |
6 |
Correct |
16 ms |
23764 KB |
Output is correct |
7 |
Incorrect |
13 ms |
23764 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
368 ms |
86564 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
16 ms |
23788 KB |
Output is correct |
2 |
Correct |
13 ms |
23804 KB |
Output is correct |
3 |
Correct |
13 ms |
23772 KB |
Output is correct |
4 |
Correct |
17 ms |
23888 KB |
Output is correct |
5 |
Correct |
16 ms |
23808 KB |
Output is correct |
6 |
Correct |
16 ms |
23764 KB |
Output is correct |
7 |
Incorrect |
13 ms |
23764 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
16 ms |
23788 KB |
Output is correct |
2 |
Correct |
13 ms |
23804 KB |
Output is correct |
3 |
Correct |
13 ms |
23772 KB |
Output is correct |
4 |
Correct |
17 ms |
23888 KB |
Output is correct |
5 |
Correct |
16 ms |
23808 KB |
Output is correct |
6 |
Correct |
16 ms |
23764 KB |
Output is correct |
7 |
Incorrect |
13 ms |
23764 KB |
Output isn't correct |
8 |
Halted |
0 ms |
0 KB |
- |