博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
FWT快速沃尔什变换
阅读量:5301 次
发布时间:2019-06-14

本文共 1308 字,大约阅读时间需要 4 分钟。

前言

学多项式怎么能错过\(FWT\)呢,然而这真是个毒瘤的东西,蒟蒻就只会背公式了\(\%>\_<\%\)

或卷积

\[\begin{aligned}\\ tf(A) = (tf(A_0), tf(A_1) + tf(A_0))\\ utf(A) = (utf(A), utf(A_1) - utf(A_0))\\ \end{aligned}\]

与卷积

\[\begin{aligned}\\ tf(A) = (tf(A_0) + tf(A_1), tf(A_1))\\ utf(A) = (utf(A_0) - utf(A_1), utf(A_1))\\ \end{aligned}\]

异或卷积

\[\begin{aligned}\\ tf(A) = (tf(A_0) + tf(A_1), tf(A_0) - tf(A_1))\\ utf(A) = (\frac{utf(A_0) + utf(A_1)}{2}, \frac{utf(A_0) - utf(A_1)}{2})\\ \end{aligned}\]

Code

习惯写递归的非递归本来也不会

#include
typedef int LL;inline LL Read(){ LL x(0),f(1); char c=getchar(); while(c<'0' || c>'9'){ if(c=='-') f=-1; c=getchar(); } while(c>='0' && c<='9'){ x=(x<<3)+(x<<1)+c-'0'; c=getchar(); } return x*f;}const LL mod=998244353,maxn=1<<18,inv2=499122177;inline LL Pow(LL base,LL b){ LL ret(1); while(b){ if(b&1) ret=1ll*ret*base%mod; base=1ll*base*base%mod; b>>=1; } return ret;}void Solve_or(LL n,LL *a,LL *b,LL *c){ n>>=1; if(!n){ c[0]=1ll*a[0]*b[0]%mod; return; } for(LL i=0;i
>=1; if(!n){ c[0]=1ll*a[0]*b[0]%mod; return; } for(LL i=0;i
>=1; if(!n){ c[0]=1ll*a[0]*b[0]%mod; return; } for(LL i=0;i

转载于:https://www.cnblogs.com/y2823774827y/p/10728615.html

你可能感兴趣的文章
我的工作习惯小结
查看>>
把word文档中的所有图片导出
查看>>
浏览器的判断;
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>
机器学习/深度学习/其他开发环境搭建记录
查看>>
xml.exist() 实例演示
查看>>
判断是否为空然后赋值
查看>>
zabbix监控日志文件
查看>>
正则表达式
查看>>
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
查看>>
环套树
查看>>
java基础(一):我对java的三个环境变量的简单理解和配置
查看>>
arcgis api 4.x for js 结合 Echarts4 实现散点图效果(附源码下载)
查看>>
YTU 2625: B 构造函数和析构函数
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
eclipse的调试方法的简单介绍
查看>>