hdu1055 Color a Tree(贪心)

Color a Tree

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


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
 
题意:每个节点有一个权值,从根节点开始着色,下一个被着色的节点,他的父亲一定已经被着色了,根据着色顺序得到一个序列,求最小的序列对应的权值的乘积和最小;
分析:寻找最大权值,合并这个节点和他的父亲节点,记下这两个节点的拓扑序列,同时新节点的权值为这些节点的算术平均值,直到只有一个节点。
 
View Code
 1 #include<iostream>
 2 #include<fstream>
 3 #include<cstdio>
 4 #include<cstring>
 5 #define MAXN 1010
 6 
 7 using namespace std;
 8 
 9 double b[MAXN];
10 int next[MAXN],f[MAXN],a[MAXN],cnt[MAXN],ff[MAXN];
11 bool vis[MAXN];
12 
13 int child(int r)
14 {
15     if(next[r]==r) return  r;
16     return child(next[r]);
17 }
18 
19 int father(int x)
20 {
21     if(ff[x]==x) return x;
22     ff[x]=father(ff[x]);
23     return ff[x];
24 }
25 
26 int main()
27 {
28     int n,r,u,v,i,j;
29     while(scanf("%d%d",&n,&r)==2&&(n+r))
30     {
31         memset(vis,false,sizeof(vis));
32         for(i=1;i<=n;i++)
33         {
34             scanf("%d",&a[i]);
35             b[i]=a[i]*1.0;
36             ff[i]=f[i]=next[i]=i;
37             cnt[i]=1;
38         }
39         for(i=1;i<n;i++)
40         {
41             scanf("%d%d",&u,&v);
42             f[v]=u;
43         }
44         double maxw;
45         vis[r]=true;
46         for(j=1;j<n;j++)
47         {
48             maxw=0;
49             for(i=1;i<=n;i++)
50             {
51                 if(!vis[i]&&maxw<b[i]/cnt[i])
52                 {
53                     maxw=b[i]/cnt[i];
54                     v=i;
55                 }
56             }
57             u=child(f[v]);
58             next[u]=v;
59             ff[v]=u;
60             u=father(v);
61             cnt[u]=cnt[u]+cnt[v];
62             b[u]=b[u]+b[v];
63             vis[v]=true;
64         }
65         int ans=0,k=1;
66         while(r!=next[r])
67         {
68             ans+=k*a[r];
69             k++;
70             r=next[r];
71         }
72         ans+=k*a[r];
73         printf("%d\n",ans);
74     }
75     return 0;
76 }

 

转载于:https://www.cnblogs.com/zhourongqing/archive/2012/07/31/2616186.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值