codeforces_632E.Thief in a Shop(dp)

10 篇文章 0 订阅
E. Thief in a Shop
time limit per test
5 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

A thief made his way to a shop.

As usual he has his lucky knapsack with him. The knapsack can contain k objects. There are n kinds of products in the shop and an infinite number of products of each kind. The cost of one product of kind i is ai.

The thief is greedy, so he will take exactly k products (it's possible for some kinds to take several products of that kind).

Find all the possible total costs of products the thief can nick into his knapsack.

Input

The first line contains two integers n and k (1 ≤ n, k ≤ 1000) — the number of kinds of products and the number of products the thief will take.

The second line contains n integers ai (1 ≤ ai ≤ 1000) — the costs of products for kinds from 1 to n.

Output

Print the only line with all the possible total costs of stolen products, separated by a space. The numbers should be printed in the ascending order.

Examples
input
3 2
1 2 3
output
2 3 4 5 6
input
5 5
1 1 1 1 1
output
5
input
3 3
3 5 11
output
9 11 13 15 17 19 21 25 27 33
 
        

好久每做dp了,都没思路了,正好选k个想不到怎么dp,于是让n个ai都减去a1,使得第一个数是0,后面不足k个再加上k*a1。


#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
using namespace std;

int dp[1000010];

int main()
{
    int i,j,n,k,a[1010];
    while(scanf("%d%d",&n,&k)!=EOF)
    {
        for(i=1; i<=n; i++)scanf("%d",&a[i]);
        sort(a+1,a+n+1);
        int a1=a[1];
        for(i=1; i<=n; i++)a[i]-=a1;
        for(i=1; i<=1000000; i++)dp[i]=99999999;
        dp[0]=0;
        for(i=0; i<=1000000; i++)
        {
            for(j=1; j<=n; j++)
            {
                if(i>=a[j])
                {
                    dp[i]=min(dp[i],dp[i-a[j]]+1);
                }
            }
        }
        for(i=0; i<=1000000; i++)
        {
            if(dp[i]<=k)
            {
                printf("%d ",i+k*a1);
            }
        }
        printf("\n");
    }


    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值