传送门
给你一个 m m m,现在有一个数组 f f f,已知这 2 m 2^m 2m个数在 0 0 0时刻的值 f [ 0 ] [ i ] ( i ∈ [ 0 , 2 m ) ) f[0][i](i\in[0,2^m)) f[0][i](i∈[0,2m)),已知另一个数组 b [ i ] ( i ∈ [ 0 , m ] ) b[i](i\in[0,m]) b[i](i∈[0,m])
记 c n t ( x ) cnt(x) cnt(x)为 x x x在二进制下1的数量, ⊕ \oplus ⊕为异或运算
有如下递推式 f [ i ] [ j ] = ∑ k = 0 2 m − 1 b [ c n t [ j ⊕ k ] ] ∗ f [ i − 1 ] [ k ] m o d    p f[i][j]=\sum_{k=0}^{2^m-1}b[cnt[j\oplus k]]*f[i-1][k] \mod p f[i][j]=k=0∑2m−1b[cnt[j⊕k]]∗f[i−1][k]modp
求 f [ t ] [ i ] ( i ∈ [ 0 , 2 m ) ) f[t][i](i\in[0,2^m)) f[t][i](i∈[0,2m))
原题数据范围:
1 ≤ m ≤ 20 , 1 ≤ t ≤ 1 0 18 , 2 ≤ p ≤ 1 0 9 1\le m\le20,1\le t\le 10^{18},2\le p\le10^9 1≤m≤20,1≤t≤1018,2≤p≤109
1 ≤ f [ 0 ] [ i ] , b [ i ] ≤ 1 0 9 1\le f[0][i],b[i]\le 10^9 1≤f[0][i],b[i]≤109
m , t , p , f , b ∈ Z m,t,p,f,b\in \mathbb{Z} m,t,p,f,b∈Z
时间限制 6 s 6s 6s
为了解释方便,定义 n = 2 m n=2^m n=2m
拿到一道题,首先当然先考虑暴力怎么做,当然是很方便的,首先,我们可以直接考虑模拟,总复杂度 Θ ( n 2 t m ) \Theta(n^2tm) Θ(n2tm)
容易发现,那个 c n t [ ] cnt[] cnt[]是可以预处理的,所以复杂度变为 Θ ( n 2 t ) \Theta(n^2t) Θ(n2t)
你发现, t t t实在是太大了,实在为本题的一大瓶颈
考虑矩阵乘法,对于下一个时刻本质上是进行一次矩阵乘法,总复杂度 Θ ( n 3 l o g t ) \Theta(n^3logt) Θ(n3logt)
前面的那么多算法的复杂度并不优越,一般的出题人对于前面的算法的给分一般都只有一档,实在不是很可观
但是,你会FWT,你看过我的博客,(不会FWT的请点击快速沃尔什变换(FWT))
请仔细观察如下式子
f [ i ] [ j ] = ∑ k = 0 2 m − 1 b [ c n t [ j ⊕ k ] ] ∗ f [ i − 1 ] [ k ] m o d    p f[i][j]=\sum_{k=0}^{2^m-1}b[cnt[j\oplus k]]*f[i-1][k] \mod p f[i][j]=k=0∑2m−1b[cnt[j⊕k]]∗f[i−1][k]modp
把它做一个转换
f [ i ] [ j ] = ∑ a ⊕ b = j b [ c n t [ a ] ] ∗ f [ i − 1 ] [ b ] m o d    p f[i][j]=\sum_{a\oplus b=j}b[cnt[a]]*f[i-1][b] \mod p f[i][j]=a⊕b=j∑b[cnt[a]]∗f[i−1][b]modp
考虑构造一个数组 g [ i ] = b [ c n t [ i ] ] g[i]=b[cnt[i]] g[i]=b[cnt[i]],下一个时刻就相当于对 g g g做一次异或卷积,好吧,目前的复杂度是 Θ ( t n l o g n ) \Theta(tnlogn) Θ(tnlogn)
由于每次卷积都是卷同一个东西,所以预处理 g 1 , g 2 , g 3 , g 4 ⋅ ⋅ ⋅ g^1,g^2,g^3,g^4··· g1,g2,g3,g4⋅⋅⋅
即快速幂,复杂度 Θ ( n l o g n l o g t ) \Theta(nlognlogt) Θ(nlognlogt)
我们回到2.4,发现复杂度瓶颈在 F W T FWT FWT和 I F W T IFWT IFWT,然而并不需要每次 F W T ( ) FWT() FWT()数组对应系数乘后IDFT回来,直接在里面乘就好了,复杂度 Θ ( n l o g n + n t ) \Theta(nlogn+nt) Θ(nlogn+nt)
发现2.6里的乘系数每次都是乘同一个数,快速幂一下,复杂度 Θ ( n l o g n + n l o g t ) \Theta(nlogn+nlogt) Θ(nlogn+nlogt)
发现这题有一个很坑的地方,就是p可能是2的倍数,而FWT的时候要除以n,然后就会挂
例如: n = 2 n=2 n=2, p = 6 p=6 p=6,现在有个数当前算出来值为 8 8 8,直接除以 2 2 2结果是 4 4 4,先模 p p p结果为 8 8%6=2 8,再除以 2 2 2为结果为 1 1 1,就挂了
然后就需要将模数扩大 n n n倍
n ∗ p n*p n∗p是 1 0 19 10^{19} 1019两个数直接乘会爆long long,慢速乘又会带来 Θ ( l o g n ) \Theta(logn) Θ(logn)的复杂度,不是很优越,所以需要一些奇技淫巧优化这个乘法
inline LL msc(LL a,LL b)
{
LL v=(a*b-(LL)((long double)a/mod*b+1e-8)*mod);
return v<0?v+mod:v;
}
到这里这个算法已经可以通过此题了,贴出AC代码
#include
#include
#include
#define rg register
typedef long long LL;
template <typename T> inline T max(const T a,const T b){return a>b?a:b;}
template <typename T> inline T min(const T a,const T b){return a<b?a:b;}
template <typename T> inline void mind(T&a,const T b){a=a<b?a:b;}
template <typename T> inline void maxd(T&a,const T b){a=a>b?a:b;}
template <typename T> inline T abs(const T a){return a>0?a:-a;}
template <typename T> inline void swap(T&a,T&b){T c=a;a=b;b=c;}
template <typename T> inline T gcd(const T a,const T b){if(!b)return a;return gcd(b,a%b);}
template <typename T> inline T lcm(const T a,const T b){return a/gcd(a,b)*b;}
template <typename T> inline T square(const T x){return x*x;};
template <typename T> inline void read(T&x)
{
char cu=getchar();x=0;bool fla=0;
while(!isdigit(cu)){if(cu=='-')fla=1;cu=getchar();}
while(isdigit(cu))x=x*10+cu-'0',cu=getchar();
if(fla)x=-x;
}
template <typename T> inline void printe(const T x)
{
if(x>=10)printe(x/10);
putchar(x%10+'0');
}
template <typename T> inline void print(const T x)
{
if(x<0)putchar('-'),printe(-x);
else printe(x);
}
LL mod=998244353;const int lenth=1048576;
inline LL msc(LL a,LL b)
{
LL v=(a*b-(LL)((long double)a/mod*b+1e-8)*mod);
return v<0?v+mod:v;
}
inline LL pow(LL a,LL b)
{
LL res=1;
for(;b;a=msc(a,a),b>>=1)if(b&1)res=msc(a,res);
return res;
}
LL n,m,t,a[lenth],b[lenth],c[21];int cnt[lenth];
inline void FWT(LL*A,const int fla)
{
for(rg int i=1;i<n;i<<=1)
for(rg int j=0;j<n;j+=(i<<1))
for(rg int k=0;k<i;k++)
{
const LL x=A[j+k],y=A[j+k+i];
A[j+k]=(x+y)%mod;
A[j+k+i]=(x+mod-y)%mod;
}
if(fla==-1)
for(rg int i=0;i<n;i++)
A[i]/=n;
}
int main()
{
read(m),read(t),read(mod),n=1<<m,mod*=n;
for(rg int i=0;i<n;i++)read(a[i]);
for(rg int i=1;i<n;i++)cnt[i]=cnt[i^(i&-i)]+1;
for(rg int i=0;i<=m;i++)read(c[i]);
for(rg int i=0;i<n;i++)b[i]=c[cnt[i]];
FWT(a,1),FWT(b,1);
for(rg int i=0;i<n;i++)a[i]=msc(a[i],pow(b[i],t));
FWT(a,-1);
for(rg int i=0;i<n;i++)print(a[i]),putchar('\n');
return 0;
}
然而,这道题可以进行优化
1 ≤ t ≤ 2 10000 1\le t\le 2^{10000} 1≤t≤210000
对于之前的那个算法,显然是无法接受这个数据范围的,所以我们现在需要换个思路
新定义:
定义两个位置 i i i、 j j j的距离 d i s ( i , j ) = c n t [ i ⊕ j ] dis(i,j)=cnt[i\oplus j] dis(i,j)=cnt[i⊕j]
对于一个位置 x x x,每次能向它转移的位置 y y y有 2 m 2^m 2m个,所以暴力复杂度非常不优。但是你会发现,转移的位置虽然多,但是系数的种类却不多,对 x x x位置产生贡献的系数按与 x x x位置的距离分只有 m + 1 m+1 m+1种,我们就可以观察是否可以在这里进行突破
当然可以,不然我说这个干什么
容易发现,这 m + 1 m+1 m+1种系数就是输入的那个 b [ ] b[] b[],而在 t t t时刻,仍然是有一个 b t [ ] b_t[] bt[]的(在之后,这个下标代表时刻),只是数值上发生了变化
那么如果我们能够快速的求出 t t t时刻的b数组,那么我们剩下要做的就是一遍FWT,复杂度只剩 Θ ( n l o g n ) \Theta(nlogn) Θ(nlogn)了
要计算 b t [ ] b_t[] bt[],我们要从 b t − 1 [ ] b_{t-1}[] bt−1[]推过来
转移显然是 Θ ( m 2 ) \Theta(m^2) Θ(m2)的,那么转移的系数是什么呢?
考虑 b t − 1 [ j ] b_{t-1}[j] bt−1[j]对 b t [ i ] b_t[i] bt[i]的贡献
现在知道转移的系数了,那么就可以用矩阵乘法优化,复杂度是 Θ ( m 3 l o g t ) \Theta(m^3logt) Θ(m3logt)的,算法总复杂度为 Θ ( m 3 l o g t + n l o g n ) \Theta(m^3logt+nlogn) Θ(m3logt+nlogn)
贴出AC代码
#include
#include
#include
#include
#define rg register
typedef long long LL;
template <typename T> inline T max(const T a,const T b){return a>b?a:b;}
template <typename T> inline T min(const T a,const T b){return a<b?a:b;}
template <typename T> inline void mind(T&a,const T b){a=a<b?a:b;}
template <typename T> inline void maxd(T&a,const T b){a=a>b?a:b;}
template <typename T> inline T abs(const T a){return a>0?a:-a;}
template <typename T> inline void swap(T&a,T&b){T c=a;a=b;b=c;}
template <typename T> inline T gcd(const T a,const T b){if(!b)return a;return gcd(b,a%b);}
template <typename T> inline T lcm(const T a,const T b){return a/gcd(a,b)*b;}
template <typename T> inline T square(const T x){return x*x;};
template <typename T> inline void read(T&x)
{
char cu=getchar();x=0;bool fla=0;
while(!isdigit(cu)){if(cu=='-')fla=1;cu=getchar();}
while(isdigit(cu))x=x*10+cu-'0',cu=getchar();
if(fla)x=-x;
}
template <typename T> inline void printe(const T x)
{
if(x>=10)printe(x/10);
putchar(x%10+'0');
}
template <typename T> inline void print(const T x)
{
if(x<0)putchar('-'),printe(-x);
else printe(x);
}
LL mod=998244353;const int lenth=1048576;
inline LL msc(LL a,LL b)
{
LL v=(a*b-(LL)((long double)a/mod*b+1e-8)*mod);
return v<0?v+mod:v;
}
const int maxn=21;
int size=21;
struct Martix
{
LL a[maxn][maxn];
Martix(){};
Martix(const int x)
{
if(x==0)memset(a,0,sizeof(a));
else if(x==1)
{
memset(a,0,sizeof(a));
for(rg int i=0;i<size;i++)a[i][i]=1;
}
}
Martix operator *(const Martix&b)const
{
Martix x=0;
for(rg int i=0;i<size;i++)
for(rg int j=0;j<size;j++)
for(rg int k=0;k<size;k++)
x.a[i][j]=(x.a[i][j]+msc(a[i][k],b.a[k][j]))%mod;
return x;
}
}bz,final;
template <typename T,typename sum>inline T pow(T x,const sum y)
{
T res=1;
for(rg sum i=1;i<=y;i<<=1,x=x*x)if(i&y)res=res*x;
return res;
}
LL n,m,t,a[lenth],b[lenth],c[21];int cnt[lenth];
inline void FWT(LL*A,const int fla)
{
for(rg int i=1;i<n;i<<=1)
for(rg int j=0;j<n;j+=(i<<1))
for(rg int k=0;k<i;k++)
{
const LL x=A[j+k],y=A[j+k+i];
A[j+k]=(x+y)%mod;
A[j+k+i]=(x+mod-y)%mod;
}
if(fla==-1)
for(rg int i=0;i<n;i++)
A[i]/=n;
}
LL C[21][21];
int main()
{
read(m),read(t),read(mod),n=1<<m,mod*=n;
for(rg int i=0;i<n;i++)read(a[i]);
for(rg int i=1;i<n;i++)cnt[i]=cnt[i^(i&-i)]+1;
for(rg int i=0;i<=m;i++)read(c[i]);final.a[0][0]=1;
for(rg int i=0;i<=m;i++)
{
C[i][0]=1;
for(rg int j=1;j<i;j++)C[i][j]=(C[i-1][j]+C[i-1][j-1])%mod;
C[i][i]=1;
}
for(rg int j=0;j<=m;j++)
for(rg int i=0;i<=m;i++)
{
for(rg int s0=0;s0<=m;s0++)
{
const int s1=j-i+s0;
if(s0>m-j)continue;
if(s1>j||s1<0)continue;
bz.a[i][j]=(bz.a[i][j]+msc(msc(c[s0+s1],C[m-j][s0]),C[j][s1]))%mod;
}
}
final=final*pow(bz,t);
for(rg int i=0;i<n;i++)b[i]=final.a[0][cnt[i]];
FWT(a,1),FWT(b,1);
for(rg int i=0;i<n;i++)a[i]=msc(a[i],b[i]);
FWT(a,-1);
for(rg int i=0;i<n;i++)print(a[i]),putchar('\n');
return 0;
}
这是一道非常不错的题,想要AC此题并不是很难,我写这题的博客是因为它的优化非常巧妙,也没有用到很难的知识点,值得深思
还有要把慢速乘背下来