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/6_Advanced/Persistent.mdx

29 lines
664 B
Text
Raw Normal View History

2020-06-25 17:43:28 +00:00
---
id: persistent
title: "Persistent Data Structures"
author: Benjamin Qi
description: "?"
prerequisites:
- Platinum - Range Update Range Query
2020-06-26 21:26:47 +00:00
frequency: 0
2020-06-25 17:43:28 +00:00
---
<Info title="Pro Tip">
2020-06-26 01:51:05 +00:00
Historically restricted to USACO Camp.
</Info>
2020-06-26 01:51:05 +00:00
## Persistent Heap
(Leftist)
## Persistent Array
https://dmoj.ca/problem/wac4p5
## Persistent Segment Tree
2020-06-25 15:52:19 +00:00
* Persistent Segment Tree
* Tutorial
* [Anudeep2011](https://blog.anudeep2011.com/persistent-segment-trees-explained-with-spoj-problems/)
* [oml1111](https://drive.google.com/file/d/0BwGLW04WRv0ITEZjRWlMSFc2bk0/view)
2020-06-26 01:51:05 +00:00
* [Lazy Propogation](http://codeforces.com/blog/entry/47108?#comment-315047)