POJ-3659 Cell Phone Network(图的最小支配集+树形dp+处理点)

Cell Phone Network

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 7241   Accepted: 2581

Description

Farmer John has decided to give each of his cows a cell phone in hopes to encourage their social interaction. This, however, requires him to set up cell phone towers on his N (1 ≤ N ≤ 10,000) pastures (conveniently numbered 1..N) so they can all communicate.

Exactly N-1 pairs of pastures are adjacent, and for any two pastures A and B (1 ≤ A ≤ N; 1 ≤ B ≤ NA ≠ B) there is a sequence of adjacent pastures such that is the first pasture in the sequence and B is the last. Farmer John can only place cell phone towers in the pastures, and each tower has enough range to provide service to the pasture it is on and all pastures adjacent to the pasture with the cell tower.

Help him determine the minimum number of towers he must install to provide cell phone service to each pasture.

Input

* Line 1: A single integer: N
* Lines 2..N: Each line specifies a pair of adjacent pastures with two space-separated integers: A and B

Output

* Line 1: A single integer indicating the minimum number of towers to install

Sample Input

5
1 3
5 2
4 3
3 5

Sample Output

2

Source

USACO 2008 January Gold

#include 
#include 
#include 
#include 
using namespace std;
#define MAXN 10010
#define INF 0x3f3f3f3f
vector  G[MAXN];
int dp[MAXN][MAXN];   //dp[i][0]表示取i结点时的最小结点数
                      //dp[i][1]表示不取i结点时,i被其儿子覆盖时的最小结点数
                      //dp[i][2]表示不选点i,i被其父亲覆盖时的最小结点数
                      //树形DP状态转移从叶子结点开始向根不断转移,所以用深搜。
                      //搜到叶子结点就结束。
                      //转移的时候可以将结点以下给圈起来。
                      //取与不取,树上背包
int vis[MAXN];
void dfs(int u)
{
    vis[u]=1;
    int i;
    int flag=1,tmp=INF;
    for(i=0;i

 

你可能感兴趣的:(c++,动态规划)