标签:完全 预处理 std mes int space string http clu
#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#define LL long long
using namespace std;
int tot,s,t,c[5],d[5];
LL ans,f[100005];
int main()
{
scanf("%d%d%d%d%d",&c[1],&c[2],&c[3],&c[4],&tot);
f[0]=1;
for(int i=1;i<=4;i++)
for(int j=c[i];j<=100000;j++)
f[j]+=f[j-c[i]];
t=(1<<4)-1;
while(tot--)
{
scanf("%d%d%d%d%d",&d[1],&d[2],&d[3],&d[4],&s);
ans=f[s];
for(int i=t;i;i=(i-1)&t)
{
LL res=0;
bool frog=0;
for(int j=1;j<=4;j++)
{
if(i&(1<<(j-1)))
{
frog^=1;
res+=c[j]*(d[j]+1);
}
}
if(s>=res)
{
if(frog) ans-=f[s-res];
else ans+=f[s-res];
}
}
printf("%lld\n",ans);
}
return 0;
}
标签:完全 预处理 std mes int space string http clu
原文地址:https://www.cnblogs.com/Hawking-llfz/p/11589670.html