附带条件的完全背包 - Cut Ribbon - CodeForces - 189A

Cut Ribbon

CodeForces - 189A

PROBLEMS

Polycarpus has a ribbon, its length is n. He wants to cut the ribbon in a way that fulfils the following two conditions:

After the cutting each ribbon piece should have length a, b or c.
After the cutting the number of ribbon pieces should be maximum.
Help Polycarpus and find the number of ribbon pieces after the required cutting.

Input

The first line contains four space-separated integers n, a, b and c (1 ≤ n, a, b, c ≤ 4000) — the length of the original ribbon and the acceptable lengths of the ribbon pieces after the cutting, correspondingly. The numbers a, b and c can coincide.

Output

Print a single number — the maximum possible number of ribbon pieces. It is guaranteed that at least one correct ribbon cutting exists.

Examples

input

5 5 3 2

output

2

input

7 5 5 2

output

2

Note

In the first example Polycarpus can cut the ribbon in such way: the first piece has length 2, the second piece has length 3.

In the second example Polycarpus can cut the ribbon in such way: the first piece has length 5, the second piece has length 2.

分析

切割后每段长度为 a b c 可确定其为完全背包 则其状态转移方程为dp[j]=max(dp[j],dp[j-a]+1)
要想切割后段数最大并且长度为 a b c 就需要在添加限制条件 需要让每次状态转移中的dp[j-a]成立 需要使其能够剪成 那限制条件就出来了 dp[j-a]j-a==0同时也是成立
让 a b c 的长度将丝带分开 只需要将三个长度进行 dp 那最后的值必然为满足最大

代码

#include<stdio.h>
#include<algorithm>
using namespace std;
int j,n,a,b,c,dp[4010];
int main()
{
	scanf("%d %d %d %d",&n,&a,&b,&c);
	for(j=a; j<=n; j++)
		if(dp[j-a]||j-a==0)
			dp[j]=max(dp[j],dp[j-a]+1);
	for(j=b; j<=n; j++)
		if(dp[j-b]||j-b==0)
			dp[j]=max(dp[j],dp[j-b]+1);
	for(j=c; j<=n; j++)
		if(dp[j-c]||j-c==0)
			dp[j]=max(dp[j],dp[j-c]+1);
	printf("%d",dp[n]);
}
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值