Codeforces837D - Round Subset 【DP】

D. Round Subset
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Let's call the roundness of the number the number of zeros to which it ends.

You have an array of n numbers. You need to choose a subset of exactly k numbers so that the roundness of the product of the selected numbers will be maximum possible.

Input

The first line contains two integer numbers n and k (1 ≤ n ≤ 200, 1 ≤ k ≤ n).

The second line contains n space-separated integer numbers a1, a2, ..., an (1 ≤ ai ≤ 1018).

Output

Print maximal roundness of product of the chosen subset of length k.

Examples
input
3 2
50 4 20
output
3
input
5 3
15 16 3 25 9
output
3
input
3 3
9 77 13
output
0
Note

In the first example there are 3 subsets of 2 numbers. [50, 4] has product 200 with roundness 2[4, 20] — product 80roundness 1[50, 20] — product 1000roundness 3.

In the second example subset [15, 16, 25] has product 6000roundness 3.

In the third example all subsets has product with roundness 0.


【题意】

给出n个数,让你从中选出k个数,使得它们乘积的后缀0最多,输出这个值。


【思路】


显然0是由2*5得来的,所以先算出一个数分解质因子后2和5的个数。


然后用dp[i][j]表示选择了i个数,且这i个数质因子中5的个数和为j时,质因子中2的个数和的最大值。状态转移方程为:


dp[j][l]=max(dp[j][l],dp[j-1][l-n5]+n2);


#include<bits/stdc++.h>
using namespace std;
#define LL long long
#define N 205
int n, k, dp[N][6000];
int two[N], five[N];
void solve()
{
    memset(two, 0, sizeof(two));
    memset(five, 0, sizeof(five));
    memset(dp, 0xbf, sizeof(dp));
    int tf=0;
    for(int i=1; i<=n; i++)
    {
        LL x, tmp;cin>>x;tmp=x;
        while(x%2==0)
        {
            two[i]++;
            x/=2;
        }
        x=tmp;
        while(x%5==0)
        {
            five[i]++;
            x/=5;
            tf++;
        }
    }
    dp[0][0] = 0;
    int ans = 0;
    for(int i=1; i<=n; i++)
        for(int j = min(k, i); j >= 1; j--)
            for(int k = tf; k >= five[i]; k--)
                dp[j][k] = max(dp[j][k], dp[j-1][k-five[i]]+two[i]);
    for(int i = 1; i <= tf; i++)
        ans = max(ans, min(dp[k][i], i));
    cout << ans << endl;
}
int main()
{
    while(cin>>n>>k)
    {
        solve();
    }
    return 0;
}






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值