이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#define ar array
typedef int64_t 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 pos = 0, res = 0;
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<<res<<"\n";
}
/*
8 7 1
1 2
2 3
3 4
3 5
3 6
4 7
4 8
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |