zoukankan      html  css  js  c++  java
  • POJ 1947 Rebuilding Roads 树形DP

    Rebuilding Roads
     

    Description

    The cows have reconstructed Farmer John's farm, with its N barns (1 <= N <= 150, number 1..N) after the terrible earthquake last May. The cows didn't have time to rebuild any extra roads, so now there is exactly one way to get from any given barn to any other barn. Thus, the farm transportation system can be represented as a tree. 

    Farmer John wants to know how much damage another earthquake could do. He wants to know the minimum number of roads whose destruction would isolate a subtree of exactly P (1 <= P <= N) barns from the rest of the barns.

    Input

    * Line 1: Two integers, N and P 

    * Lines 2..N: N-1 lines, each with two integers I and J. Node I is node J's parent in the tree of roads. 

    Output

    A single line containing the integer that is the minimum number of roads that need to be destroyed for a subtree of P nodes to be isolated. 

    Sample Input

    11 6
    1 2
    1 3
    1 4
    1 5
    2 6
    2 7
    2 8
    4 9
    4 10
    4 11
    

    Sample Output

    2

    题意:

      给你一个n点的树和一个p

      问你通过删除一些边得到一个至少含有一个子树节点数为p的最少删除数

    题解:

      设定dp[u][x]表示以u为根节点剩余x个点的最少删除边数

      那么这就是背包问题了

      dp[u][i] = min(dp[v][k]+dp[u][i-k]-1,dp[u][i]);

      u表示根节点,v表示儿子之一

    #include <iostream>
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include<vector>
    #include <algorithm>
    using namespace std;
    const int N = 2e2+20, M = 1e2+10, mod = 1e9+7, inf = 1e9+1000;
    typedef long long ll;
    
    int siz[N],n,p,dp[N][N];
    vector<int > G[N];
    void dfs(int u,int fa) {
        siz[u] = 1;
        int totson = G[u].size();
        for(int i=0;i<totson;i++) {
            int to = G[u][i];
            if(to == fa) continue;
            dfs(to,u);
            siz[u] += siz[to];
        }
        dp[u][1] = totson - 1;if(u == 1) dp[u][1]++;
        for(int j=0;j<totson;j++) {
            int v = G[u][j];
            if(v == fa) continue;
            for(int i=siz[u];i>=1;i--) {
                for(int k=1;k<i && k<=siz[v];k++) {
                    dp[u][i] = min(dp[v][k]+dp[u][i-k]-1,dp[u][i]);
                }
            }
        }
    }
    int main()
    {
        scanf("%d%d",&n,&p);
        for(int i=1;i<n;i++) {
            int a,b;
            scanf("%d%d",&a,&b);
            G[a].push_back(b);
            G[b].push_back(a);
        }
        for(int i=0;i<=n;i++) for(int j=0;j<=p;j++) dp[i][j]=inf;
        dfs(1,-1);
        int ans = dp[1][p];
        for(int i=2;i<=n;i++) {
            ans = min(ans, dp[i][p]+1);
        }
        cout<<ans<<endl;
    }
  • 相关阅读:
    Mac上搭建Hadoop环境(3) — Hive下载及安装
    Mac上搭建Hadoop环境(2) — Hadoop下载及安装
    Mac上搭建Hadoop环境(1) — 虚拟机的安装及SSH免密设置
    Mac上ssh localhost免密失败该如何解决
    Java8 Lambda 之 Collection Stream
    Java 集合Collection——初学者参考,高手慎入(未完待续)
    Java注解Annotation(一)
    ubuntu下安装和破解navicat的方法
    java I/O流类概述
    List元素为泛型时的注意事项
  • 原文地址:https://www.cnblogs.com/zxhl/p/5688642.html
Copyright © 2011-2022 走看看