E. Karen and Supermarket
time limit per test 2 seconds
memory limit per test 512 megabytes
input standard input
output standard output

On the way home, Karen decided to stop by the supermarket to buy some groceries.

She needs to buy a lot of goods, but since she is a student her budget is still quite limited. In fact, she can only spend up to b dollars.

The supermarket sells n goods. The i-th good can be bought for ci dollars. Of course, each good can only be bought once.

Lately, the supermarket has been trying to increase its business. Karen, being a loyal customer, was given n coupons. If Karen purchases the i-th good, she can use the i-th coupon to decrease its price by di. Of course, a coupon cannot be used without buying the corresponding good.

There is, however, a constraint with the coupons. For all i ≥ 2, in order to use the i-th coupon, Karen must also use the xi-th coupon (which may mean using even more coupons to satisfy the requirement for that coupon).

Karen wants to know the following. What is the maximum number of goods she can buy, without exceeding her budget b?

Input

The first line of input contains two integers n and b (1 ≤ n ≤ 5000, 1 ≤ b ≤ 109), the number of goods in the store and the amount of money Karen has, respectively.

The next n lines describe the items. Specifically:

  • The i-th line among these starts with two integers, ci and di (1 ≤ di < ci ≤ 109), the price of the i-th good and the discount when using the coupon for the i-th good, respectively.
  • If i ≥ 2, this is followed by another integer, xi (1 ≤ xi < i), denoting that the xi-th coupon must also be used before this coupon can be used.
Output

Output a single integer on a line by itself, the number of different goods Karen can buy, without exceeding her budget.

Examples
input
6 16
10 9
10 5 1
12 2 1
20 18 3
10 2 3
2 1 5
output
4
input
5 10
3 1
3 1 1
3 1 2
3 1 3
3 1 4
output
5
Note

In the first test case, Karen can purchase the following 4 items:

  • Use the first coupon to buy the first item for 10 - 9 = 1 dollar.
  • Use the third coupon to buy the third item for 12 - 2 = 10 dollars.
  • Use the fourth coupon to buy the fourth item for 20 - 18 = 2 dollars.
  • Buy the sixth item for 2 dollars.

The total cost of these goods is 15, which falls within her budget. Note, for example, that she cannot use the coupon on the sixth item, because then she should have also used the fifth coupon to buy the fifth item, which she did not do here.

In the second test case, Karen has enough money to use all the coupons and purchase everything.

题解:

一道比较经典的树形DP,一开始觉得就是做n次分组背包,但是发现是O(n^3)。

其实统计一下当前根节点所计算过的节点数,保存在size中就优化成O(n^2)了。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<cstdlib>
#include<algorithm>
using namespace std;
int n,m;
struct node
{
int next,to;
} edge[];
int head[],sze=;
void putin(int from,int to)
{
sze++;
edge[sze].next=head[from];
edge[sze].to=to;
head[from]=sze;
}
long long f[][][],size[],a[],b[];
void dfs(int u)
{
int i;
long long j,l;
size[u]=;
f[u][][]=;
f[u][][]=a[u];
f[u][][]=a[u]-b[u];
for(i=head[u]; i!=-; i=edge[i].next)
{
int y=edge[i].to;
dfs(y);
for(j=size[u]; j>=; j--)
{
for(l=; l<=size[y]; l++)
{
f[u][j+l][]=min(f[u][j+l][],f[u][j][]+f[y][l][]);
f[u][j+l][]=min(f[u][j+l][],min(f[u][j][]+f[y][l][],f[u][j][]+f[y][l][]));
}
}
size[u]+=size[y];
}
}
int main()
{
int i,j,fa;
memset(head,-,sizeof(head));
scanf("%d%d",&n,&m);
scanf("%I64d%I64d",&a[],&b[]);
for(i=; i<=n; i++)
{
scanf("%I64d%I64d%d",&a[i],&b[i],&fa);
putin(fa,i);
}
memset(f,/,sizeof(f));
dfs();
int ans=;
for(i=; i<=n; i++)
{
if(f[][i][]<=m||f[][i][]<=m)ans=i;
}
printf("%d\n",ans);
return ;
}

最新文章

  1. ubuntu设置时区为美国中部时间西六区
  2. 安全退出,清空Session或Cookie
  3. Open Auth辅助库(使用ImitateLogin实现登录)
  4. FGPA 双向 IO 自动方向控制
  5. String to Integer
  6. HTTP 缓存策略
  7. android 常见分辨率(mdpi、hdpi 、xhdpi、xxhdpi )及屏幕适配注意事
  8. Yii 2.0: yii2-highcharts-widget创建饼状图
  9. [Usaco2007 Jan]Telephone Lines架设电话线[二分答案+最短路思想]
  10. Redis-简单实现星形主从配置
  11. Python实战171202元组访问
  12. Maven初解--依赖查找方法
  13. Java的基本类型和包装类型
  14. spark学习笔记_1
  15. 【BZOJ1211】【HNOI2004】树的计数 prufer序列
  16. Beyond-Compare 4 -linux 破解
  17. 【转】 Keil C51重定向printf到串口
  18. POJ 1661 Help Jimmy(DP/最短路)
  19. How to add the ApplicationPoolIdentity to a SQL Server Login
  20. IIS 网站日志分析

热门文章

  1. 递归/非递归----python深度遍历二叉树(前序遍历,中序遍历,后序遍历)
  2. hdu畅通工程
  3. Vue cli项目开启Gzip
  4. C# GUID使用总结
  5. 获取.net对象的属性集
  6. 面向对象(static关键字)
  7. 在VS中对WCF服务进行更新,但是配置文件没有更新解决办法
  8. PDF,IMAGE,HTML,WORD,EXCEL 互操作
  9. Eclipse插件:tomcatPluginV33.zip 安装
  10. poi 导出excel 生成等比例图片