摘要: int Pow(int x,int y){ int ans=1; for (;y;y>>=1,x=1LL*x*x%mod) if (y&1) ans=1LL*ans*x%mod; return ans; } void FWT(int a[],int n,int flag){ for (int d=1;d0; } 阅读全文
posted @ 2018-08-12 12:45 电竞毒奶 阅读(89) 评论(0) 推荐(0) 编辑