icpc2018焦作Transport Ship(背包思想)
Posted windfreedom
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了icpc2018焦作Transport Ship(背包思想)相关的知识,希望对你有一定的参考价值。
ac代码:
#include<bits/stdc++.h> #define per(i,a,b) for(int i=a;i<=b;i++) using namespace std; typedef long long ll; //#define int long long const ll inf =2333333333333333LL; const double eps=1e-8; int read(){ char ch=getchar(); int res=0,f=0; while(ch<‘0‘ || ch>‘9‘){f=(ch==‘-‘?-1:1);ch=getchar();} while(ch>=‘0‘&&ch<=‘9‘){res=res*10+(ch-‘0‘);ch=getchar();} return res*f; } // ------------------------head #define mod 1000000007 const int siz=10005; int T,n,q,v,c,qdata; ll dp[siz]; signed main() { scanf("%d",&T); while(T--){ scanf("%d%d",&n,&q); memset(dp,0,sizeof(dp)); dp[0]=1; for(int i=1;i<=n;i++){ scanf("%d%d",&v,&c); int cnt=1; for(int j=0;j<c;j++){ for(int k=10000;k>=cnt*v;k--)dp[k]=(dp[k]+dp[k-cnt*v])%mod; cnt*=2; } } per(i,1,q){ scanf("%d",&qdata); printf("%lld ",dp[qdata]); } } return 0; }
以上是关于icpc2018焦作Transport Ship(背包思想)的主要内容,如果未能解决你的问题,请参考以下文章
ACM-ICPC 2018 焦作赛区网络预赛 Transport Ship
ACM-ICPC 2018 焦作赛区网络预赛 K. Transport Ship
2018 焦作网络赛 K Transport Ship ( 二进制优化 01 背包 )