zoukankan      html  css  js  c++  java
  • HDU 1054 Strategic Game(树形DP)

    Problem Description
    Bob enjoys playing computer games, especially strategic games, but sometimes he cannot find the solution fast enough and then he is very sad. Now he has the following problem. He must defend a medieval city, the roads of which form a tree. He has to put the minimum number of soldiers on the nodes so that they can observe all the edges. Can you help him?



    Your program should find the minimum number of soldiers that Bob has to put for a given tree.

    The input file contains several data sets in text format. Each data set represents a tree with the following description:

    the number of nodes
    the description of each node in the following format
    node_identifier:(number_of_roads) node_identifier1 node_identifier2 ... node_identifier
    or
    node_identifier:(0)

    The node identifiers are integer numbers between 0 and n-1, for n nodes (0 < n <= 1500). Every edge appears only once in the input data.

    For example for the tree: 

     

    the solution is one soldier ( at the node 1).

    The output should be printed on the standard output. For each given input data set, print one integer number in a single line that gives the result (the minimum number of soldiers). An example is given in the following table:

     

    Sample Input
    4 0:(1) 1 1:(2) 2 3 2:(0) 3:(0) 5 3:(3) 1 4 2 1:(1) 0 2:(0) 0:(0) 4:(0)
     

    Sample Output
    1 2

    一般的树形DP;

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<limits.h>
    #include<vector>
    typedef long long LL;
    using namespace std;
    #define REPF( i , a , b ) for ( int i = a ; i <= b ; ++ i )
    #define REP( i , n ) for ( int i = 0 ; i < n ; ++ i )
    #define CLEAR( a , x ) memset ( a , x , sizeof a )
    vector<int>v[1500];
    int vis[1500];
    int dp[1500][2];
    int n,m;
    void dfs(int x)
    {
        if(vis[x])  return ;
        vis[x]=1;
        dp[x][1]=1;
        dp[x][0]=0;
        for(int i=0;i<v[x].size();i++)
        {
            if(!vis[v[x][i]])
            {
                dfs(v[x][i]);
                dp[x][0]+=dp[v[x][i]][1];
                dp[x][1]+=min(dp[v[x][i]][1],dp[v[x][i]][0]);
            }
        }
    }
    int main()
    {
        int x,y,temp;
        while(~scanf("%d",&n))
        {
            REP(i,n)
                v[i].clear();
            REPF(i,1,n)
            {
               scanf("%d:(%d)",&x,&y);
               while(y--)
               {
                   scanf("%d",&temp);
                   v[x].push_back(temp);
                   v[temp].push_back(x);
               }
            }
            CLEAR(vis,0);
            dfs(1);//因为是无向图能够在0~n中随变找一个点
            printf("%d
    ",min(dp[1][1],dp[1][0]));
        }
        return 0;
    }
    


  • 相关阅读:
    centos7 计划任务 定时运行sh
    Nginx负载均衡配置 域名和IP 访问时从java request.getServerName()获取不同问题解决
    windows2012激活方式 2016激活方式 windows10激活方式
    CentOS7 安装Chrome
    使用 go-cqhttp 在龙芯和其他平台搭建qq机器人
    KDE桌面无故特效消失和图标黑底
    SDUST 小学期飞机大战简述
    SDUST 小学期飞机大战简述
    宝塔中极速安装的PHP如何使用AMQP连接RabbitMQ
    Electron登录注册桌面应用源码+安装文件的打包方法
  • 原文地址:https://www.cnblogs.com/mengfanrong/p/5096887.html
Copyright © 2011-2022 走看看