Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atcoder/ac-library
AtCoder Library
https://github.com/atcoder/ac-library
atcoder atcoder-library competitive-programming
Last synced: 2 months ago
JSON representation
AtCoder Library
- Host: GitHub
- URL: https://github.com/atcoder/ac-library
- Owner: atcoder
- License: cc0-1.0
- Created: 2020-09-08T13:18:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-26T20:03:36.000Z (6 months ago)
- Last Synced: 2024-08-01T17:22:39.154Z (5 months ago)
- Topics: atcoder, atcoder-library, competitive-programming
- Language: C++
- Homepage:
- Size: 978 KB
- Stars: 1,783
- Watchers: 35
- Forks: 233
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-baekjoon - atcoder/ac-library - AtCoder 측에서 공식 제공하는 라이브러리로, 컨볼루션, 펜윅 트리, 느리게 갱신되는 세그먼트 트리, 강한 연결 요소 등 다양한 코드를 제공합니다. (라이브러리)
README
# AC(AtCoder) Library
AC Library is the official library of [AtCoder](https://atcoder.jp/home). This repository manages the contents of AC Library.
You may refer to the following links for more details:
- [The Announcement on AtCoder](https://atcoder.jp/posts/518)
- [The Announcement on Codeforces](https://codeforces.com/blog/entry/82400)
- [Practice Contest](https://atcoder.jp/contests/practice2)
- [AC Library Document(en)](https://atcoder.github.io/ac-library/production/document_en/)
- [AC Library Document(ja)](https://atcoder.github.io/ac-library/production/document_ja/)The documents of master branch are as follows:
- [AC Library Document(en, master)](https://atcoder.github.io/ac-library/master/document_en/)
- [AC Library Document(ja, master)](https://atcoder.github.io/ac-library/master/document_ja/)## Policy
Our goal of this project is to achieve that
- Enable **every AtCoder users** to use this library with **minimum efforts of studying about PC**
- Maximize convenience for **the usage in competitive programming**. We completely ignore other usages.
- No bugs. This is a fantasy, but we pursue this.By this policy, we ignore some manners of C++ intentionally. For example,
- we don't use `size_t`, but use `int`.
- Segtree handles function pointers, not functional objects.
- and so on...## Direction of this project
We haven't decided whether we should increase this library's contents or not because there are pros and cons.
If you are interested in this topic, please join the discussion in [The Announcement on Codeforces](https://codeforces.com/blog/entry/82400).For now, we are not planning to add new features, and we use this repository only for
- collecting issues
- recording the changelogs
- versioning our releases## Contributing
We accept issues/PRs **only from AtCoder users**.
We would appreciate it if you would report our mistakes like a typo, or, more importantly, bugs!
As mentioned above, we haven't decided which way to go. Therefore we are not accepting feature requests for now, and issues will be closed.
## Releases
You can view the newest version of AC Library in [The Announcement on AtCoder](https://atcoder.jp/posts/518) page.
You can also see all versions in [The Release](https://github.com/atcoder/ac-library/releases) page.
## License
This library is released under the [CC0](https://creativecommons.org/publicdomain/zero/1.0/legalcode), except for the third-party libraries that are located under `/document_(en|ja)/lib` directory. Please refer [/document_en/lib/LICENSE.md](./document_en/lib/LICENSE.md) for details.