码迷,mamicode.com
首页 > 其他好文 > 详细

Transport Ship - 计蒜客

时间:2018-09-20 01:17:27      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:ima   方案   tran   inf   style   技术   color   void   transport   

技术分享图片

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 - 计蒜客

标签:ima   方案   tran   inf   style   技术   color   void   transport   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!