Starship Troopers

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 20833    Accepted Submission(s):
5550

Problem Description

 
You, the leader of Starship Troopers, are sent to
destroy a base of the bugs. The base is built underground. It is actually a huge
cavern, which consists of many rooms connected with tunnels. Each room is
occupied by some bugs, and their brains hide in some of the rooms. Scientists
have just developed a new weapon and want to experiment it on some brains. Your
task is to destroy the whole base, and capture as many brains as
possible.

To kill all the bugs is always easier than to capture their
brains. A map is drawn for you, with all the rooms marked by the amount of bugs
inside, and the possibility of containing a brain. The cavern's structure is
like a tree in such a way that there is one unique path leading to each room
from the entrance. To finish the battle as soon as possible, you do not want to
wait for the troopers to clear a room before advancing to the next one, instead
you have to leave some troopers at each room passed to fight all the bugs
inside. The troopers never re-enter a room where they have visited
before.

A starship trooper can fight against 20 bugs. Since you do not
have enough troopers, you can only take some of the rooms and let the nerve gas
do the rest of the job. At the mean time, you should maximize the possibility of
capturing a brain. To simplify the problem, just maximize the sum of all the
possibilities of containing brains for the taken rooms. Making such a plan is a
difficult job. You need the help of a computer.

 

Input

The input contains several test cases. The first line
of each test case contains two integers N (0 < N <= 100) and M (0 <= M
<= 100), which are the number of rooms in the cavern and the number of
starship troopers you have, respectively. The following N lines give the
description of the rooms. Each line contains two non-negative integers -- the
amount of bugs inside and the possibility of containing a brain, respectively.
The next N - 1 lines give the description of tunnels. Each tunnel is described
by two integers, which are the indices of the two rooms it connects. Rooms are
numbered from 1 and room 1 is the entrance to the cavern.

The last test
case is followed by two -1's.

 

Output

For each test case, print on a single line the maximum
sum of all the possibilities of containing brains for the taken rooms.
 

Sample Input

5 10
50 10
40 10
40 20
65 30
70 30
1 2
1 3
2 4
2 5
1 1
20 7
-1 -1
 

Sample Output

50 7
 
 

code

 /*
hdu 1011
dp[i][j]:以i为根的树中,留下j个士兵,最大的收益。
*/
#include<cstdio>
#include<algorithm>
#include<cstring> using namespace std; const int MAXN = ; struct Edge{
int to,nxt;
}e[];
int head[],tot;
int val[MAXN],bg[MAXN],dp[MAXN][MAXN];
bool vis[MAXN];
int n,m; inline int read() {
int x = ,f = ;char ch = getchar();
for (; ch<''||ch>''; ch = getchar())
if (ch=='-') f = -;
for (; ch>=''&&ch<=''; ch = getchar())
x = x*+ch-'';
return x*f;
}
inline void add_edge(int u,int v) {
e[++tot].to = v,e[tot].nxt = head[u],head[u] = tot;
}
inline void init() {
memset(head,,sizeof(head));
memset(vis,false,sizeof(vis));
memset(dp,,sizeof(dp));
tot = ;
}
void dfs(int u) {
int tmp = (bg[u]+)/; // 对于当前点留下多少士兵
for (int i=tmp; i<=m; ++i) dp[u][i] = val[u]; // 留下tmp个以及tmp+1...都是一样的
vis[u] = true;
for (int i=head[u]; i; i=e[i].nxt) {
int v = e[i].to;
if (vis[v]) continue; // 不能搜回去
dfs(v);
for (int j=m; j>=tmp; --j)
for (int k=; k<=j-tmp; ++k)
dp[u][j] = max(dp[u][j],dp[u][j-k]+dp[v][k]);
}
}
int main() { while (scanf("%d%d",&n,&m)!=EOF && (n!=-||m!=-)) {
init();
for (int i=; i<=n; ++i) {
bg[i] = read(), val[i] = read();
}
for (int u,v,i=; i<n; ++i) {
u = read(),v = read();
add_edge(u,v),add_edge(v,u); // 当前不知道谁是谁的父亲儿子
}
if (m==) { // 别忘了特判,有这样的数据!!!
printf("0\n");continue;
}
dfs();
printf("%d\n",dp[][m]);
}
return ;
}
 

最新文章

  1. BZOJ3414 : Poi2013 Inspector
  2. inotify配合rsync实现文件同步
  3. xmind第一天笔记
  4. CLR via C#可空值类型
  5. Linux 复习重点目录
  6. 【我的漫漫跨考路】数据结构之单链表线性存储实现 Beta
  7. form表单参数传递和url参数传递的区别
  8. Google SRE
  9. [MySQL]如何支持utf8格式的UCS4unicode字符
  10. ASYNC_NETWORK_IO和PREEMPTIVE_OS_WAITFORSINGLEOBJECT等待事件
  11. log4j2 的使用
  12. 如何防止Arp攻击
  13. css 文本超出容器长度后自动省略的方法!
  14. linux -- Ubuntu查看修改mysql的登录名和密码、安装phpmyadmin
  15. UIView的背景渐变
  16. Working out
  17. linux系统基础之--进程计划(基于centos7.4 1708)
  18. arcgis for android常见问题回答
  19. (3)python 列表和元组
  20. Java多线程的两种实现方式

热门文章

  1. shell里的IFS内置环境变量
  2. Ionic开发-常用插件安装
  3. ios 身份证照片识别信息
  4. Outlook Web App 客户端超时设置
  5. SAP OData编程指南
  6. Spring Mybatis PageHelper 设置使用
  7. Oracle 11g 新特性 – HM(Hang Manager)简介
  8. .net后台使用post方式对指定地址的方法传值并且获取结果的方法
  9. UVA 10891 Game of Sum (决策优化)
  10. What is a meta-class in Objective-C?