zoukankan      html  css  js  c++  java
  • 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.
  • 相关阅读:
    Java WebSocket通信Demo
    JAVA FTP/SFTP 上传下载文件
    SpringMVC+MyBatis 事务中 基于注解的声明式事务
    Java 调用支付宝接口
    linux安装Tomcat
    使用cxf发布restful的webservice
    restful的webservice
    oracle时间比较和分页查询
    jenkins问题
    linux安装jenkins
  • 原文地址:https://www.cnblogs.com/Xiper/p/4465685.html
Copyright © 2011-2022 走看看