• HDU 5534/ 2015长春区域H.Partial Tree DP


    Partial Tree

    Problem Description
    In mathematics, and more specifically in graph theory, a tree is an undirected graph in which any two nodes are connected by exactly one path. In other words, any connected graph without simple cycles is a tree.

    You find a partial tree on the way home. This tree has n nodes but lacks of n1 edges. You want to complete this tree by adding n1 edges. There must be exactly one path between any two nodes after adding. As you know, there are nn2 ways to complete this tree, and you want to make the completed tree as cool as possible. The coolness of a tree is the sum of coolness of its nodes. The coolness of a node is f(d) , where f is a predefined function and d is the degree of this node. What's the maximum coolness of the completed tree?
     
    Input
    The first line contains an integer T indicating the total number of test cases.
    Each test case starts with an integer n in one line,
    then one line with n1 integers f(1),f(2),,f(n1) .

    1T2015
    2n2015
    0f(i)10000
    There are at most 10 test cases with n>100 .
     
    Output
    For each test case, please output the maximum coolness of the completed tree in one line.
     
    Sample Input
    2 3 2 1 4 5 1 4
     
    Sample Output
    5 19
     
    题意:给你n个点,给你1到n-1的度数的价值,让你构造一棵树这颗树的价值就是,度数代表的价值和,问最大是多少,
     
    题解:首先度的总和为2(n-1),并且每个节点度不为0。如果用二维dp[i][j]表示第i个节点还剩j个度的最优值,是没问题,但是复杂度为o(n3)。但是其实每个节点都要分配一个度,那么我们先给每个节点分配一个度,剩下n-2的度分给n个点,可以减掉一维,dp[i]表示i个度的最优值,因为度的个数是严格小于节点个数的。背包转移的权值为val[i]-val[1](可能有负数)
     
    #include<cstdio>
    using namespace std ;
    #define inf 1000000
    int main(){
      int dp[2016],a,b,n,i,T,j;
       scanf("%d",&T);
         while(T--){
            scanf("%d%d",&n,&a);
            for( i=1;i<n;i++){dp[i]=-inf;}
            for( i=2;i<n;i++){
                    scanf("%d",&b);b=b-a;
                for( j=i-1;j<=n-2;j++){
                    if(dp[j-(i-1)]+b>dp[j])
                    dp[j]=dp[j-(i-1)]+b;
                }
            }
           printf("%d
    ",n*a+dp[n-2]);
         }
      return 0;
    }
    代码
  • 相关阅读:
    最大组合的数 A
    2106. 求对称字符串的最大长度 A
    内存分配 A
    242. 子串匹配 A
    【LeetCode 1055】形成字符串的最短路径 A
    给定差值的组合 A
    1791 设备编号 A
    最长的指定瑕疵度的元音子串 A
    1898. 【认证试题】遥控小车 A
    1792 服务器集群网络延迟 A
  • 原文地址:https://www.cnblogs.com/zxhl/p/4977505.html
Copyright © 2020-2023  润新知