답안 #1067750

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1067750 2024-08-21T02:50:52 Z 12345678 Torrent (COI16_torrent) C++17
0 / 100
367 ms 28508 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<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;
        if (cost(cut[md])<cost(cut[md-1])) l=md;
        else r=md-1;
    }
    cout<<cost(cut[l]);
}

Compilation message

torrent.cpp: In function 'void dfs(int, int, int)':
torrent.cpp:24:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   24 |     for (int i=0; i<s.size(); i++) dp[u]=max(dp[u], i+1+s[i]);
      |                   ~^~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 7512 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 367 ms 28508 KB Output isn't correct
2 Halted 0 ms 0 KB -