HDU - 1054-- bipartite graph - tree dp

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:

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)
Output
1
2

The meaning of problems: a given number of points required minimum edge tree covered;
ideas: 1 maximum matching of bipartite graph do, is to match the maximum number of minimum edge cover; 2 tree dp:. Dp [u] [ 0] represented by u u is the number of tree root point is not taken, dp [u] [1] expressed as the root node in a tree u u point to take the number of state transition equation:. dp [u] [0 ] + = dp [v] [1]; dp [u] [1] + = min (dp [v] [0], dp [v] [1]);

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
using namespace std;
const int maxn=1550;
int head[maxn],ip;
int dp[maxn][2],n;
struct note{
    int v,next;
}edge[maxn*4];
void init(){
    memset(head,-1,sizeof(head));
    ip=0;
}
void addedge(int u,int v){
    edge[ip].v=v,edge[ip].next=head[u],head[u]=ip++;
}
void dfs(int u,int pre){
    dp[u][1]=1;
    dp[u][0]=0;
    for(int i=head[u];i!=-1;i=edge[i].next){
        int v=edge[i].v;
        if(v==pre) continue;
        dfs(v,u);
        dp[u][0]+=dp[v][1];
        dp[u][1]+=min(dp[v][0],dp[v][1]);
    }
}
int main(){
    while(~scanf("%d",&n)){
        init();
        for(int i=0;i<n;i++){
            int u,k;
            scanf("%d:(%d)",&u,&k);
            u++;
            for(int j=0;j<k;j++){
                int v;
                scanf("%d",&v);
                v++;
                addedge(u,v);
                addedge(v,u);
            }
        }
        memset(dp,0,sizeof(dp));
        dfs(1,-1);
        printf("%d\n",min(dp[1][0],dp[1][1]));
    }
    return 0;
}

 

Published 162 original articles · won praise 73 · views 10000 +

Guess you like

Origin blog.csdn.net/queque_heiya/article/details/104478330