• UESTC_Frozen Rose-Heads CDOJ 791


    The winter is coming and all the experts are warning that it will be the coldest one in the last hundred years. Freddy needs to make sure that his garden does not sustain any damage. One of the most important tasks is to make sure that no water remains in his large watering system.

    All the water comes from a central node and is distributed by pipes to neighboring nodes and soon. Each node is either a sprinkler (rose head) with no outgoing pipe or an internal node with one or more outgoing pipes leading to some other nodes. Every node has exactly one incoming pipe, except for the central node which takes the water directly from a well and has no incoming pipe. Every pipe has a valve that stops all the water going through the pipe. The valves are of different quality and age, so some may be harder to close than others.

    Freddy knows his valves well and has assigned a value to each pipe representing the amount of effort needed to close the corresponding valve. He asks you to help him count the minimum effort needed to close some valves so that no water goes to the sprinklers.

    Input

    The input contains several test cases. Each test case starts with a line with two integers, the number of nodes n (2n1,000), and the number of the central node c (1cn). Each of the next n1 lines represents one pipe and contains three integers, uv (1u,vn) and w(1w1,000), where u and v are the nodes connected by a pipe and w is the effort needed to close the valve on that pipe. You may assume that every node is reachable from the central node.

    Output

    For each test case, output a single line containing the minimum sum of efforts of valves to be closed, such that the central node gets separated from all sprinklers.

    解题报告

    基础树形DP。。没啥好讲的

    #include <iostream>
    #include <cstdio>
    #include <vector>
    #include <cstring>
    #include <set>
    using namespace std;
    const int maxn = 1000 + 25;
    const int INF = 1 << 25;
    set<int>E[maxn];
    int n,c,cost[maxn][maxn],pre[maxn],dp[maxn];
    
    
    void Delete_n(int cur,int fat)
    {
        pre[cur] = fat;
        for(set<int>::iterator it = E[cur].begin() ; it != E[cur].end() ; ++ it)
         {
             int tar = *it;
             if (*it != fat)
              Delete_n(tar,cur);
         }
        if (fat != -1)
          E[cur].erase(fat);
    }
    
    int slove(int cur)
    {
        if (dp[cur] != -1)
         return dp[cur];
        int & ans = dp[cur] = INF;
        if (!E[cur].size())
         return ans = cost[cur][pre[cur]];
        int res = 0;
        for(set<int>::iterator it = E[cur].begin() ; it != E[cur].end() ; ++ it)
         {
              res += slove(*it);
         }
        if (cur == c)
         ans = res;
        else
         ans = min(res,cost[cur][pre[cur]]);
        return ans;
    }
    
    int main(int argc,char * argv[])
    {  
      while(scanf("%d%d",&n,&c) == 2)
       {
             c--;
             memset(dp,-1,sizeof(dp));
             for(int i = 0 ; i < n-1 ; ++ i)
               {
                   int u,v,w;
                   scanf("%d%d%d",&u,&v,&w);
                   E[u-1].insert(v-1);
                   E[v-1].insert(u-1);
                   cost[u-1][v-1] = cost[v-1][u-1] = w;
               }
              Delete_n(c,-1);
              slove(c);
              cout << dp[c] << endl;
              for(int i = 0 ; i < n ; ++ i)
               E[i].clear();
       }
      return 0;
    }
    No Pain , No Gain.
  • 相关阅读:
    day03 bs4解析库
    day02—selenium库
    day01爬虫三部曲
    IIC SPI UART通信方式的区别
    五大类程序设计模式
    套接字编程基础
    主机字节序和网络字节序转换
    位运算
    ARM体系结构的特点
    static关键字的作用
  • 原文地址:https://www.cnblogs.com/Xiper/p/4465685.html
Copyright © 2020-2023  润新知