Transport Ship - 计蒜客

Posted zgglj-com

tags:

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

技术分享图片

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 - 计蒜客的主要内容,如果未能解决你的问题,请参考以下文章

计蒜客--八皇后问题

计蒜客斑点蛇

计蒜客之判断质数

计蒜客课程竞赛入门--统计三角形 代码流程摘记

计蒜客--网页跳转问题

计蒜客--蒜头君开公司