2011 成都 H Holiday's Accommodatio

https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&category=520&page=show_problem&problem=3778
#Description
一棵树,每个点都可以去另外一个点,经过树上的路径,但不能重复,如何使经过的边的权值最大
#Algorithm
对于每条边,要使这条边走的最多,显然要让这条边左右的点都到对面去.但是也只能取较小的那个,因为较多一边到较小的那边装不下.
这样对于每条边,贡献就是2*min(左边点数, 右边点数)
通过常用的树的DFS就可以把左边点数找出来,这样就是答案
#Code

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll ans = 0;
int n;
vector<vector<pair<int, int> >> g;
vector<int> cnt;
void dfs(int u, int f)
{
    cnt[u] = 1;
    for (auto v : g[u]) {
        if (v.first == f) continue;
        dfs(v.first, u);
        cnt[u] += cnt[v.first];
        ans += v.second * min(n - cnt[v.first], cnt[v.first]) * 2;
    }
}
ll solve()
{
    ans = 0;
    scanf("%d", &n);
    g.clear();
    g.resize(n + 1);
    cnt.clear();
    cnt.resize(n + 1);
    for (int i = 0; i < n - 1; i++) {
        int x, y, z;
        scanf("%d%d%d", &x, &y, &z);
        g[x].push_back(make_pair(y, z));
        g[y].push_back(make_pair(x, z));
    }
    dfs(1, -1);
    return ans;
}
int main()
{
    int T;
    scanf("%d", &T);
    for (int i = 1; i <= T; i++) {
        printf("Case #%d: %lld\n", i, solve());
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值