首页 > 代码库 > URAL1018 Binary Apple Tree
URAL1018 Binary Apple Tree
Time Limit: 1000MS | Memory Limit: 65536KB | 64bit IO Format: %I64d & %I64u |
Description
Let‘s imagine how apple tree looks in binary computer world. You‘re right, it looks just like a binary tree, i.e. any biparous branch splits up to exactly two new branches. We will enumerate by integers the root of binary apple tree, points of branching and the ends of twigs. This way we may distinguish different branches by their ending points. We will assume that root of tree always is numbered by 1 and all numbers used for enumerating are numbered in range from 1 to N, where N is the total number of all enumerated points. For instance in the picture belowN is equal to 5. Here is an example of an enumerated tree with four branches:
2 5 \ / 3 4 \ / 1 |
As you may know it‘s not convenient to pick an apples from a tree when there are too much of branches. That‘s why some of them should be removed from a tree. But you are interested in removing branches in the way of minimal loss of apples. So your are given amounts of apples on a branches and amount of branches that should be preserved. Your task is to determine how many apples can remain on a tree after removing of excessive branches.
Input
First line of input contains two numbers: N and Q ( 2 ≤ N ≤ 100; 1 ≤ Q ≤ N − 1 ). N denotes the number of enumerated points in a tree. Qdenotes amount of branches that should be preserved. Next N − 1 lines contains descriptions of branches. Each description consists of a three integer numbers divided by spaces. The first two of them define branch by it‘s ending points. The third number defines the number of apples on this branch. You may assume that no branch contains more than 30000 apples.
Output
Output should contain the only number — amount of apples that can be preserved. And don‘t forget to preserve tree‘s root ;-)
Sample Input
input | output |
---|---|
5 21 3 11 4 102 3 203 5 20 | 21 |
Source
Problem Source: Ural State University Internal Contest ‘99 #2
树形DP
f[当前结点][所选结点数]=最优解
dp的时候num要多加1,是因为当前结点也得选,才能选子结点。
1 /*by SilverN*/ 2 #include<iostream> 3 #include<algorithm> 4 #include<cstring> 5 #include<cstdio> 6 #include<cmath> 7 using namespace std; 8 const int mxn=200; 9 struct edge{10 int v,w;11 int nxt;12 }e[mxn];13 int hd[mxn],mct=0;14 void add_edge(int u,int v,int dis){15 e[++mct].v=v;e[mct].nxt=hd[u];e[mct].w=dis;hd[u]=mct;16 return;17 }18 int f[mxn][mxn];19 int num[mxn];20 int n,m;21 void dp(int u,int fa){22 int i,j,k;23 num[u]=0;24 for(i=hd[u];i;i=e[i].nxt){25 int v=e[i].v;26 if(v==fa)continue;27 dp(v,u);28 num[u]+=num[v]+1;29 for(j=num[u];j;--j){30 for(k=j;k;k--){31 f[u][j]=max(f[u][j],f[u][j-k]+f[v][k-1]+e[i].w);32 }33 }34 }35 return;36 }37 int main(){38 scanf("%d%d",&n,&m);39 int i,j;40 int u,v,d;41 for(i=1;i<n;i++){42 scanf("%d%d%d",&u,&v,&d);43 add_edge(u,v,d);44 add_edge(v,u,d);45 }46 dp(1,0);47 printf("%d\n",f[1][m]);48 return 0;49 }
URAL1018 Binary Apple Tree
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。