首页 > 其他 > 详细

Transport Ship - 计蒜客

时间:2018-09-20 00:02:05      阅读:198      评论:0      收藏:0      [点我收藏+]

技术分享图片

ps:看出是多重背包了,但不会计算方案数。

const int mod = 1000000007;
const int N = 10005;

int n, q, tot;
int dp[N], v[N];

inline void upd(int &x, int y) {
    (x < y) && (x = y);
}

int main()
{
    BEGIN() {
        mem(dp, 0);
        dp[0] = 1;

        sc(n), sc(q);
        tot = 0;
        Rep(i, 1, n) {
            int x, y;
            sc(x), sc(y);
            Rep(j, 1, y) {
                v[++tot] = (1 << (j - 1)) * x;
            }
        }

        Rep(i, 1, tot) {
            for (int j = 10000; j >= v[i]; --j) {
                dp[j] += dp[j - v[i]];
                dp[j] %= mod;
            }
        }

        while(q--) {
            int x;
            sc(x);
            pr(dp[x]);
        }
    }
    return 0;
}

 

Transport Ship - 计蒜客

原文:https://www.cnblogs.com/zgglj-com/p/9678336.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!