cf837d Round Subset

Posted poorpool

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cf837d Round Subset相关的知识,希望对你有一定的参考价值。

设dp[i][j][k]表示前i个数中选j个并且因子含有k个2的能获得的最多的5的个数
则dp[i][j][k]=max(dp[i-1][j][k],dp[i-1][j-1][k-cnt2]+cnt5)
滚掉一维

#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
typedef long long ll;
int n, m, allcnt, dp[205][12005], cnt2, cnt5, ans;
long long uu;
int main(){
    cin>>n>>m;
    memset(dp, 0x80, sizeof(dp));
    dp[0][0] = 0;
    for(int i=1; i<=n; i++){
        cin>>uu;
        cnt2 = cnt5 = 0;
        while(uu%2==0){
            cnt2++;
            uu /= 2;
        }
        while(uu%5==0){
            cnt5++;
            uu /= 5;
        }
        allcnt += cnt2;
        for(int j=min(m,i); j>=1; j--)
            for(int k=allcnt; k>=cnt2; k--)
                dp[j][k] = max(dp[j-1][k-cnt2]+cnt5, dp[j][k]);
    }
    for(int i=1; i<=allcnt; i++)
        ans = max(ans, min(dp[m][i], i));
    cout<<ans<<endl;
    return 0;
}

以上是关于cf837d Round Subset的主要内容,如果未能解决你的问题,请参考以下文章

D - Round Subset codeforces837d

Codeforces 837D Round Subset - 动态规划 - 数论

Codeforces 837D - Round Subset DP

动态规划Round Subset

Educational Codeforces Round 26 D. Round Subset 动态规划

Educational Codeforces Round 26-D. Round Subset