POJ 2054 Color a Tree

 

 

贪心。。。。

                   Color a Tree
Time Limit: 1000MS Memory Limit: 30000K
Total Submissions: 6647 Accepted: 2249

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

Beijing 2004


 

贪心原则应该是Ci大的尽量先染色,但是由于父节点染了才能染子节点的限制使得问题不好解决了,但是Ci大的一定是在其父节点染色后立即被染色,这时大牛们的思路我也没有看明白如何证明的,但仔细一想就明白了。于是我们根据这个条件就可以将Ci大的点与其父节点合并在一起组成一个集合。这样就可以将问题规模减小。

   合并后的点(即集合)的属性如何变化呢?假如设fact[i]表示集合的Ci和,iNum[i]表示i所属集合的结点个数;那么把fact[i]/iNum[i]作为贪心原则,其值大者先合并到其父节点,最终合并成一个集合。

 

 1 #include <iostream>
 2 #include <cstring>
 3 #include <cstdio>
 4 
 5 using namespace std;
 6 
 7 struct Edge
 8 {
 9     int to,next;
10 }e[1111];
11 
12 int n,root,Size,Adj[1111],c[1111],num[1111],father[1111];
13 bool vis[1111];
14 
15 void Init()
16 {
17     Size=0;
18     memset(Adj,-1,sizeof(Adj));
19     memset(vis,false,sizeof(vis));
20 }
21 
22 void Add_Edge(int u,int v)
23 {
24     ///u-->v
25     e[Size].to=v;
26     e[Size].next=Adj[u];
27     Adj[u]=Size++;
28 }
29 
30 int Find()
31 {
32     int k=-1;
33     double maxn=-0x3f3f3f3f;
34     for(int i=1;i<=n;i++)
35     {
36         if(!vis[i]&&i!=root&&maxn<(double)c[i]/num[i])
37         {
38             maxn=(double)c[i]/num[i];
39             k=i;
40         }
41     }
42     return k;
43 }
44 
45 void Union(int a,int b)
46 {
47     /// a to b
48     num[b]+=num[a];
49     c[b]+=c[a];
50     father[a]=b;
51     for(int i=Adj[a];~i;i=e[i].next)
52     {
53         int v=e[i].to;
54         father[v]=b;
55     }
56 }
57 
58 int solve()
59 {
60     int ans=0;
61     for(int i=0;i<n-1;i++)
62     {
63         int k=Find();
64         vis[k]=true;
65         int p=father[k];
66         while(vis[p]) p=father[p];
67         ans+=c[k]*num[p];
68         Union(k,p);
69     }
70     ans+=c[root];
71     return ans;
72 }
73 
74 int main()
75 {
76     while(scanf("%d%d",&n,&root)!=EOF)
77     {
78         if(n==0&&root==0) break;
79         Init();
80         for(int i=1;i<=n;i++)
81         {
82             scanf("%d",c+i);
83             num[i]=1;
84         }
85         for(int i=0;i<n-1;i++)
86         {
87             int u,v;
88             scanf("%d%d",&u,&v);
89             Add_Edge(u,v);
90             father[v]=u;
91         }
92         printf("%d\n",solve());
93     }
94     return 0;
95 }

 

 

转载于:https://www.cnblogs.com/CKboss/p/3361809.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/575735.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

php多进程并发,php多进程模拟并发事务

用实例代码给大家介绍关于php多进程模拟并发事务产生的一些问题&#xff0c;分享出来供大家参考学习&#xff0c;下面话不多说了&#xff0c;来一起看看详细的介绍吧数据表drop table if exists test;create table if not exists test (id int not null auto_increment ,count …

查看数据库中有哪些活动的事务,对应的会话id,执行的语句

select dbt.database_id,DB_NAME(dbt.database_id) 数据库名,dbt.transaction_id,at.name,at.transaction_begin_time,case at.transaction_type --事务类型 when 1 then 读/写事务 when 2 then 只读事务 when 3 then 系统事务 when 4 then 分布式事务 end trans…

php xml 空格,php闭合标签输出多余空行使xml页面显示错误的处理

在PHP官方文档中&#xff0c;曾经指出最好不要再结尾添加?>结束标记。但我们编程的习惯和使用的IDE都会为我们自动建立php结束标记?>。这个标记使用在正常情况下是不影响程序的运行的。尤其在早期的php4中&#xff0c;这种标记使用不当也不会影响最后的输出。但我最近遇…

Oil Deposits

hdu1241:http://acm.hdu.edu.cn/showproblem.php?pid1241 题意&#xff1a;就是找出有多少块有石油的区域&#xff0c;就是数组中的,这边相邻指的是是周围的八个位置。 题解&#xff1a; dfs&#xff0c;从一块油田的位子开始&#xff0c;朝着与他相邻的8个方向收索&#xff…

apache配置php版本,apache配置支持多版本php

首先在apache2配置目录中建立虚拟主机配置文件如下ServerName gzshes.localhostDocumentRoot "/var/www/gzshes"DirectoryIndex index.html index.phpOptions Indexes FollowSymLinks ExecCGIAllowOverride AllRequire all granted#下面为URL静态重写环境的配置&…

php批量采集电视剧,如何通过PHP多线程批量采集下载远程网站图片代码实例

/*** curl 多线程* author http://www.lai18.com* param array $array 并行网址* param int $timeout 超时时间* return mix*/public function Curl_http($array,$timeout15){$res array();$mh curl_multi_init();//创建多个curl语柄foreach($array as $k>$url){$conn[$k]…

php asp写法,asp/php常用的库连接文件代码写法大全

今天有位朋友问到了&#xff0c;关于conn.asp文件内容&#xff0c;这里我作统一整理说明。一直以来主要写asp与php&#xff0c;所以这里只作这两种写法总结&#xff0c;常用的各类库连接文件写法。ASP&#xff1a;by:zhoz http://log.zhoz.com/ASP来说&#xff0c;首先当然是SQ…

windows_study_2

描述&#xff1a;如何确定像%ProgramFiles%这样格式的目录的具体位置&#xff1f; 解决&#xff1a;运行——cmd——echo %ProgramFiles%——回车——界面就显示出目录位置了。转载于:https://www.cnblogs.com/lishidefengchen/p/3370150.html

php 控制器分组模式,控制器分组路由

控制器分组路由目的降低控制器复杂度我有个Volunteer(自愿者)控制器&#xff0c;下面有多个子模块&#xff0c;比如&#xff1a;job、question、resume、groupapp|--cli|--m|--web| |--controller| | |--Message.php| | |--Passport.php| | |--User.php| | |--Volunteer.php如果…

WCF部署到IIS不使用svc文件

<?xml version"1.0" encoding"utf-8"?><configuration> <system.web> <compilation debug"false" targetFramework"4.0" /> </system.web> <system.serviceModel> <behaviors> …

php订阅号借权,php订阅号借权

微信订阅号显示暂时无法提供服务该怎么用&#xff1f;方法:1.首先确定您的微信公众号使用的是开发者模式&#xff0c;接口设置正确&#xff0c;并能正常收发普通消息。2.下面说一下提示"该公众号暂时无法提供服务&#xff0c;请稍候再试"这条信息的原因大家先了解一下…

java.io.FileNotFoundException:/mnt/sdcard/......(Permission denied)

今天在实现下载模块的时候&#xff0c;从服务器下载apk安装的时候总是不成功。 打开LogCat查看日志&#xff0c;发现在访问sdcard的时候出现Permission denied的情况。 百度之后发现原因是没有添加权限。 解决办法是在Manifest文件里添加&#xff1a; “<uses-permission an…

php vendor路径,php – 如何使用composer获取根包路径

我正在使用composer开发一个名为php-app-config的PHP组件.这个组件,一旦被另一个项目需要,并使用composer install安装,应该在root package的config文件夹中查找配置文件,类似于root_package / config / config.yml../config/config.yml应仅存在于根包中,而不应存在于composer.…

POJ 2253 Frogger (求某两点之间所有路径中最大边的最小值)

题意&#xff1a;有两只青蛙&#xff0c;a在第一个石头&#xff0c;b在第二个石头&#xff0c;a要到b那里去&#xff0c;每种a到b的路径中都有最大边&#xff0c;求所有这些最大边的最小值。思路&#xff1a;将所有边长存起来&#xff0c;排好序后&#xff0c;二分枚举答案。 时…

基于matlab的频率响应分析,基于MATLAB/GUI的二阶低通电路频率响应分析与仿真

第 34 卷 第 5 期 2011 年 10 月 电 子 器 件 Chinese Journal of Electron Devices Vol&#xff0e; 34 No&#xff0e; 5 Oct&#xff0e; 2011 项目来源: 基本电路的分析与综合实时演示系统( ndkf0908) 收稿日期:2011&#xff0d;04&#xff0d;19 修改日期:2011&#xff0d…

详解.NET IL代码(一)

本文主要介绍IL代码&#xff0c;内容大部分来自网上&#xff0c;进行整理合并的。 一、IL简介 为什么要了解IL代码&#xff1f; 如果想学好.NET&#xff0c;IL是必须的基础&#xff0c;IL代码是.NET运行的基础&#xff0c;当我们对运行结果有异议的时候&#xff0c;可以通过IL代…

CentOS yum安装mcrypt详细图解教程[linux]

在Linux的发行版CentOS 6.3 系统下&#xff0c;LAMP(LinuxApacheMysqlphp)环境搭建好后发现PHPMyadmin提示 “无法载入mcrypt模块” 的错误感觉很不爽&#xff0c;就尝试着使用yum安装提示找不到模块。如下为执行过程&#xff1a; [rootptr228 ~]# yum install php-mcrypt Sett…

matlab计算大米个数,如何求数组元素的个数 matlab

2016-11-21 回答比如说你的数组是a&#xff0c;那么元素个数可以这样求解&#xff1a;[m,n]size(a);numm*n例如&#xff1b;a 1 1 0 1 1 0 0 1 1 1 0 11 1 0 1 0 0 1 1 1 1 0 01 1 1 1 1 0 1 0 1 0 0 10 0 1 1 0 1 0 0 0 1 1 10 0 0 1 1 1 0 1 1 0 0 00 1 0 1 0 1 0 1 1 1 1 01…

软引用、弱引用、虚引用

阅读&#xff1a;http://sish#去掉我#uok.com/forum/posts/list/342.html 我很好奇为什么不能引用某网站的文字...... 对强弱等引用早有耳闻&#xff0c;却一直发现似乎无用武之地&#xff0c;今早看了 http://android-developers.blogspot.com/2010/07/multithreading-for-per…

matlab dll没有头文件,matlab调用dll没有头文件怎么办

2018-12-08 回答基于dll形式vc调用matlab函数方法如果在一matlab中或vc中写好了函数的话&#xff0c;想在对方的环境中使用&#xff0c;直接将对方语言的函数编译成dll是一个很方便的方法&#xff0c;不需要重写了。今天把基于dll形式vc调用matlab函数的主要过程写下&#xff0…