답안 #1067796

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1067796 2024-08-21T03:22:46 Z 12345678 Torrent (COI16_torrent) C++17
0 / 100
403 ms 25860 KB
#include <bits/stdc++.h>

using namespace std;

const int nx=3e5+5;

int n, a, b, u, v, dp[nx], res=INT_MAX;
vector<pair<int, int>> d[nx];
pair<int, int> pa[nx];
vector<int> cut;

void dfspa(int u, int p)
{
    for (auto [v, idx]:d[u]) if (v!=p) pa[v]={u, idx}, dfspa(v, u);
}

void dfs(int u, int p, int c)
{
    dp[u]=0;
    vector<int> s;
    for (auto [v, idx]:d[u]) if (v!=p&&idx!=c) dfs(v, u, c), s.push_back(dp[v]);
    sort(s.begin(), s.end());
    reverse(s.begin(), s.end());
    for (int i=0; i<(int)s.size(); i++) dp[u]=max(dp[u], i+1+s[i]);
}

int cost(int x)
{
    dfs(a, a, x);
    dfs(b, b, x);
    return max(dp[a], dp[b]);
}

int main()
{
    cin.tie(NULL)->sync_with_stdio(false);
    cin>>n>>a>>b;
    for (int i=1; i<n; i++) cin>>u>>v, d[u].push_back({v, i}), d[v].push_back({u, i});
    dfspa(a, a);
    int tmp=b;
    while (tmp!=a) cut.push_back(pa[tmp].second), tmp=pa[tmp].first;
    int l=0, r=cut.size()-1;
    while (l<r)
    {
        int md=(l+r+1)/2;
        cost(md);
        if (dp[a]==dp[b]) return cout<<cost(md), 0;
        if (dp[b]>dp[a]) l=md;
        else r=md-1;
    }
    cout<<cost(cut[l]);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 7512 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 403 ms 25860 KB Output isn't correct
2 Halted 0 ms 0 KB -