zoukankan      html  css  js  c++  java
  • Color a Tree[HDU1055]

    Color a Tree

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 828    Accepted Submission(s): 272

     

    Problem Description
    Bob is very interested in the data structure of a tree. A tree is a directed graph in which a special node is singled out, called the "root" of the tree, and there is a unique path from the root to each of the other nodes.

     

    Bob intends to color all the nodes of a tree with a pen. A tree has N nodes, these nodes are numbered 1, 2, ..., N. Suppose coloring a node takes 1 unit of time, and after finishing coloring one node, he is allowed to color another. Additionally, he is allowed to color a node only when its father node has been colored. Obviously, Bob is only allowed to color the root in the first try.

     

    Each node has a “coloring cost factor”, Ci. The coloring cost of each node depends both on Ci and the time at which Bob finishes the coloring of this node. At the beginning, the time is set to 0. If the finishing time of coloring node i is Fi, then the coloring cost of node i is Ci * Fi.

     

    For example, a tree with five nodes is shown in Figure-1. The coloring cost factors of each node are 1, 2, 1, 2 and 4. Bob can color the tree in the order 1, 3, 5, 2, 4, with the minimum total coloring cost of 33.

     

                                                

     

    Given a tree and the coloring cost factor of each node, please help Bob to find the minimum possible total coloring cost for coloring all the nodes.
     

     

    Input
    The input consists of several test cases. The first line of each case contains two integers N and R (1 <= N <= 1000, 1 <= R <= N), where N is the number of nodes in the tree and R is the node number of the root node. The second line contains N integers, the i-th of which is Ci (1 <= Ci <= 500), the coloring cost factor of node i. Each of the next N-1 lines contains two space-separated node numbers V1 and V2, which are the endpoints of an edge in the tree, denoting that V1 is the father node of V2. No edge will be listed twice, and all edges will be listed.

     

    A test case of N = 0 and R = 0 indicates the end of input, and should not be processed.
     

     

    Output
    For each test case, output a line containing the minimum total coloring cost required for Bob to color all the nodes.
     

     

    Sample Input
    5 1
    1 2 1 2 4
    1 2
    1 3
    2 4
    3 5
    0 0
     

     

    Sample Output
    33
     

     

    Source
    Asia 2004, Beijing (Mainland China)

    The core tactic to deal with the problem is Greedy.
    Each time we find a node U with a maximum weight in the tree.There is two kinds of situation for it.
    1.It is a root of a subtree.In other words,its father has been colored.
    Under this condition,we can color this node right away.
    2.Its father V haven't been colored.
    Now we can draw a conclusion that it is a nice choose to color it at once if we colored its father.So,we can combine it with its father.The sons of the new node consists U's sons and V's sons except U.The father of the new node is U's grandfather.

    #include<stdio.h>
    #include<string.h>
    #include<iostream>
    #include<vector>
    using namespace std;
    class node
    {
        public:
            vector<int> son;
            int father,C,T,cost;
            double W;
            bool state;
    };
    node tree[1024];
    int C[1024];
    int N,R;
    int main()
    {
        while (scanf("%d%d",&N,&R)!=EOF)
        {
            int i,j;
            if (N==0 && R==0) return 0;
            for (i=1;i<=N;i++) scanf("%d",&C[i]);
            for (i=1;i<=N;i++)
            {
                tree[i].son.clear();
                tree[i].cost=C[i];
                tree[i].C=C[i];
                tree[i].T=1;
                tree[i].state=true;
                tree[i].W=C[i];
            }
            tree[R].father=-1;
            for (i=1;i<N;i++)
            {
                int u,v;
                scanf("%d%d",&u,&v);
                tree[v].father=u;
                tree[u].son.push_back(v);
            }
            int Min=0,T=0;
            for (i=1;i<=N;i++)
            {
                double Max=0;
                int u;
                for (j=1;j<=N;j++)
                if (tree[j].state && tree[j].W>Max)
                {
                    Max=tree[j].W;
                    u=j;
                }
                if (tree[u].father==-1)
                {
                    Min+=T*tree[u].C+tree[u].cost;
                    tree[u].state=false;
                    T+=tree[u].T;
                    for (j=0;j<tree[u].son.size();j++)
                    {
                        int v=tree[u].son[j];
                        tree[v].father=-1;
                    }
                }
                else
                {
                    tree[u].state=false;
                    int v=tree[u].father;
                    for (j=0;j<tree[v].son.size();j++)
                    if (tree[v].son[j]==u)
                    {
                        tree[v].son.erase(&tree[v].son[j]);
                        break;
                    }
                    for (j=0;j<tree[u].son.size();j++)
                    {
                        int p=tree[u].son[j];
                        tree[v].son.push_back(p);
                    }
                    tree[v].cost+=tree[v].T*tree[u].C+tree[u].cost;
                    tree[v].C+=tree[u].C;
                    tree[v].T+=tree[u].T;
                    tree[v].W=tree[v].C*1.0/tree[v].T;
                }
            }
            printf("%d
    ",Min);
        }
        return 0;
    }
    

     

  • 相关阅读:
    CSS清除浮动常用方法小结
    json格式的javascript对象用法分析
    jQuery on()方法绑定动态元素的点击事件无响应的解决办法
    一道思考题(二进制枚举的应用的想法)切金条
    对于excel中,无法把字符型转成数字型解决办法
    对于excel中,无法把字符型转成数字型解决办法
    python文本挖掘输出权重,词频等信息,画出3d权重图
    python文本挖掘输出权重,词频等信息,画出3d权重图
    python使用scikit-learn计算TF-IDF
    python使用scikit-learn计算TF-IDF
  • 原文地址:https://www.cnblogs.com/dramstadt/p/3201984.html
Copyright © 2011-2022 走看看