Codeforces Round #213 (Div. 2)-D. Free Market

地址:http://codeforces.com/problemset/problem/365/D

思路:贪心,思想十分巧妙(只可意会不可言传QAQ),先将所有能够到达的状态先做标记,在从sum=0开始每次取 (sum,sum+d]的最大状态,同时记录搜索次数s,这样到搜索不到时,sum,s即为答案。

Code :

#include<iostream>
#include<cstring>
using namespace std;

const int MAX_S=500005;
int n,m;
int dp[MAX_S];

int main()
{
	ios::sync_with_stdio(false);
	while(cin>>n>>m){
		memset(dp,0,sizeof(dp));
		dp[0]=1;
		for(int i=1,x;i<=n;++i)
		{
			cin>>x;
			for(int i=MAX_S;i>=x;--i)
				if(dp[i-x])	dp[i]=1;
		}
		int sum=0,ans=0,p=1;
		while(p){
			p=0;
			for(int i=sum+m;i>sum;--i)
				if(dp[i]){
					sum=i;	++ans;
					p=1;	break;
				}
		}
		cout<<sum<<" "<<ans<<endl;
	}
	
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值