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/String_Suffix.mdx
Benjamin Qi 569b14ff01 freqs
2020-06-26 14:00:32 -04:00

21 lines
706 B
Text

---
id: string-suffix
title: "String Suffix Structures"
author: Benjamin Qi
description: "?"
prerequisites:
- Platinum - String Searching
frequency: 0
---
* String Suffix Structures
* [Suffix Automata](http://codeforces.com/blog/entry/20861)
* Suffix Tree
* [CF](http://codeforces.com/blog/entry/16780)
* [CP-Algo](https://cp-algorithms.com/string/suffix-tree-ukkonen.html)
* O(nlogn) suffix array usually suffices
* More on Palindromic Tree
* [Palindrome Partition](https://codeforces.com/contest/932/problem/G)
* [Partial Solution](https://codeforces.com/blog/entry/19193)
* [Palindromic Magic (HARD)](https://codeforces.com/contest/1081/problem/H)