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

22 lines
748 B
Text
Raw Normal View History

2020-06-25 17:43:28 +00:00
---
id: string-suffix
title: "String Suffix Structures"
author: Benjamin Qi
description: "?"
prerequisites:
- Platinum - String Searching
---
2020-06-25 15:52:19 +00:00
(restricted to camp)
* 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
* [Palindromic Tree](http://codeforces.com/blog/entry/13959)
* [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)