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/4_Plat/6_Plat_Strings.md
2020-06-04 10:20:28 -04:00

3.1 KiB

slug title author order
/plat/hashing Platinum - Strings Benjamin Qi 6

Hashing, Tries, Z, KMP, Aho-Corasick, Suffix Array, Manacher

Note: String algorithms do not appear very frequently. Hashing has appeared on gold (rarely).

General Resources

Hashing

Use to quickly test whether two substrings are equal.

My implementation can be found here. It uses two bases rather than just one to decrease the probability that two random strings hash to the same value. As mentioned in the articles above, there is no need to calculate modular inverses.

Problems

  • USACO
    • Gold Cownomics
      • Use two pointers; for a fixed l, keep extending r to the right until the positions l\ldots r explain spotiness.
      • Hashing gives you a way to quickly check whether two substrings of different cow types are equal. So for a single [l,r] pair you can check whether it works in O(N\log N) time (and you only need to check O(M) of these pairs in total).
      • Actually, it's possible to pass O(N^2M) (or even slower) solutions.
    • Gold Lightsout
      • figure out whether this actually needs hashing? (check ...)
  • Other (check ...)

Tries

Z, KMP

Aho-Corasick

Suffix Array

Manacher