zoukankan      html  css  js  c++  java
  • [bzoj1060][zjoi2007]时态同步

    一个很有意思的树上dp题。
    贪心地注意到,对于更靠近根的边使用「技能」是更优的。
    所以对于每一课子树而言,我们先使用技能统一「差值」,使得对于每一个节点,他的每一个子节点时间相同。
    这样就出现了重叠子问题,引导我们使用递归(dp)。
    具体地,我们定义f[i]为对于i,其子树中的节点到它的最长距离。
    那么答案就是sigma(f[x]-sigma(f[y]+v(x,y)))

    #include <bits/stdc++.h>
    using namespace std;
    const int maxn = 500005; ////////////////////
    int n, s;
    int f[maxn] = {0};
    long long ans = 0;
    struct edge {
        int to, value;
    };
    vector<edge> g[maxn];
    int vis[maxn];
    void dfs(int root, int fa) {
        vector<edge>::iterator it;
        for(it = g[root].begin(); it != g[root].end(); it++) {
            edge v = *it;
            if(v.to!=fa) {
                dfs(v.to, root);
                f[root] = max(f[root], f[v.to]+v.value);
            }
        }
        for(it = g[root].begin(); it!=g[root].end(); it++) {
            edge v= *it;
            if(v.to!=fa)ans+=f[root]-f[v.to]-v.value;
        }
    }
    int main() {
        scanf("%d
    %d", &n, &s);
        for(int i = 0; i < n-1; i++) {
            int a, b, t;
            scanf("%d %d %d", &a, &b, &t);
            g[a].push_back((edge){b,t});
            g[b].push_back((edge){a, t});
        }
        dfs(s, 0);
        printf("%lld", ans);
    } 
    
  • 相关阅读:
    jmeter上传和下载、webservice、数据库连接 -- 9
    jmeter cookies和token -- 8
    java 获得 微信 UserId
    让textarea根据文本的长度自动调整它的高度
    oracle 连接数据库并查询,返回List<Map<String, Object>> 数据
    POI 4.0 读取Excel
    excel (2)
    导出 doc
    sui Mobile 试玩
    oracle 与 前台 md5
  • 原文地址:https://www.cnblogs.com/gengchen/p/6323674.html
Copyright © 2011-2022 走看看