Skip to content

Commit

Permalink
增加子集卷积
Browse files Browse the repository at this point in the history
  • Loading branch information
zerolfx committed Oct 18, 2018
1 parent 3827af3 commit 4d51526
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions 2-数学.md
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,17 @@ void rXOR(LL& a, LL& b) {
}
```

+ FWT 子集卷积

```text
a[popcount(x)][x] = A[x]
b[popcount(x)][x] = B[x]
fwt(a[i]) fwt(b[i])
c[i + j][x] += a[i][x] * b[j][x]
rfwt(c[i])
ans[x] = c[popcount(x)][x]
```

## simpson 自适应积分

```cpp
Expand Down
Binary file modified template.pdf
Binary file not shown.

0 comments on commit 4d51526

Please sign in to comment.