Bzoj 2435: [Noi2011]道路修建 (dfs)

Bzoj 2435: [Noi2011]道路修建

大水题,会dfs即可.
记录一下size,n - size为另一部分的点..
Bzoj 会爆栈(真坑).
ans记得开longlong,不然只有10分.

#include <iostream>
#include <cstdio>
const int maxN = 1000000 + 7;

int size[maxN],n; // f[i]表示以i为根的子树大小. len * abs (n - 2 * f[i])

long long ans;

struct Node {
    int v,nex,w;
}Map[maxN << 1];

int head[maxN],num;

inline int abs(int a) {return a >= 0 ? a : -a;}

void add_Node(int u,int v,int w) {
    Map[++ num] = (Node) {v,head[u],w};
    head[u] = num;
    return ;
}

inline int read() {
    int x = 0,f = 1;char c = getchar();
    while(c < '0' || c > '9') {if(c == '-')f = -1;c = getchar();}
    while(c >= '0' && c <= '9') {x = x * 10 + c - '0';c = getchar();}
    return x * f;
}

void dfs_1(int now,int fa) {
    size[now] = 1;
    for(int i = head[now];i;i = Map[i].nex) {
        int v = Map[i].v,w = Map[i].w;
        if(v != fa) {
            dfs_1(v,now);
            size[now] += size[v];
            ans += (long long)w * abs(n - 2 * size[v]);
        }
    }
}

int main() {
    n = read();
    for(int i = 1,u,v,w;i < n;++ i) {
        u = read();v = read();w = read();
        add_Node(u,v,w);
        add_Node(v,u,w);
    }
    dfs_1(n,n);
    printf("%lld", ans);
    return 0;
}

转载于:https://www.cnblogs.com/tpgzy/p/9760270.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值