This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/7_Advanced/FFT.mdx

27 lines
879 B
Text
Raw Normal View History

2020-06-24 17:35:48 +00:00
---
id: fft
2020-06-26 21:12:04 +00:00
title: "Introduction to Fast Fourier Transform"
2020-06-24 17:35:48 +00:00
author: Benjamin Qi
prerequisites:
description: "?"
2020-06-26 18:00:32 +00:00
frequency: 0
2020-06-24 17:35:48 +00:00
---
## FFT
### Tutorial
- [cp-algo - FFT](https://cp-algorithms.com/algebra/fft.html)
- [CSA - FFT and Variations](https://csacademy.com/blog/fast-fourier-transform-and-variations-of-it/)
- [CF Tutorial Pt 1](http://codeforces.com/blog/entry/43499)
- [CF Tutorial Pt 2](http://codeforces.com/blog/entry/48798)
- [CF adamant](http://codeforces.com/blog/entry/55572)
### Problems
- [K-Inversions](https://open.kattis.com/problems/kinversions)
- [Big Integer](https://dmoj.ca/problem/bts17p8)
- [Matchings](https://open.kattis.com/contests/acpc17open/problems/matchings)
- [Counting Triplets](https://toph.co/p/counting-triplets)
- [Alien Codebreaking](https://open.kattis.com/problems/aliencodebreaking)
2020-06-26 21:12:04 +00:00
- base conversion in $O(N\log^2N)$