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

2018焦作网络赛K

时间:2018-09-16 15:33:07      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:opened   分享图片   sof   font   main   lin   turn   hid   play   

一个背包dp。

 

 

 

技术分享图片
//#define test
#include<bits/stdc++.h>
using namespace std;
const int Nmax=1e4+7;
const int Vmax=1e4;
typedef long long ll;
const ll mod=1e9+7LL;
ll size,dp[Nmax*2],v[Nmax];
ll c,num,cnt;
inline void init()
{
    memset(dp,0,sizeof(dp));
    size=0;
    dp[0]=1;
}
int main()
{
    //freopen("k.in","r",stdin);
    int t;
    scanf("%d",&t);

    while(t--)
    {
        int n,q;
        scanf("%d%d",&n,&q);
        init();

        for(int i = 1; i <= n; i++)
        {
            scanf("%lld%lld",&c,&num);
            cnt=1;

            while(num--)
            {
                v[++size]=(ll)c*cnt;
                cnt<<=1;
            }
        }

        for(int i = 1; i <= size; i++)
            for(int j = Vmax; j>=0; j--)
                if(dp[j]>0 && v[i]+j<=Vmax)
                    dp[j+v[i]]=(dp[j+v[i]]+dp[j])%mod;

        while(q--)
        {
            scanf("%lld",&num);
            printf("%lld\n",dp[num]);
        }

    }

    return 0;
}
View Code

 

2018焦作网络赛K

标签:opened   分享图片   sof   font   main   lin   turn   hid   play   

原文地址:https://www.cnblogs.com/LMissher/p/9655131.html

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