Libraries for competitive programming written by @cexen. Primarily for AtCoder.
The codes are not fully tested and may contain bugs. Use the information in this repository at your own risk.
Target: Clang++23 on Windows.
Target: PyPy3.9.
(Most of the 3.9 dependencies are GenericAlias, so most of the code should support PyPy3.6 if you make the necessary changes, such as rewriting x = list[int]()
to x: typing.List[int] = []
)
For std::set
and std::multiset
in Python,
I recommend tatyam-prime/SortedSet.