An open API service indexing awesome lists of open source software.

https://github.com/alvin319/competitive-programming


https://github.com/alvin319/competitive-programming

algorithms competitive-programming data-structures

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# Competitive Programming

Problem Categories
- Codeforces
- UT Austin ACM
- HackerRank
- Google CodeJam
- USACO
- UVa Online Judge
- LeetCode
- TopCoder

Languages
- Java
- C++
- Python 2/3

# Big O Analysis
| Complexity | Maximum Input Size | Comments |
|----------------------|--------------------|----------------------------------|
| O(N) | 100,000,000 (10^8) | |
| O(N Log N) | 100,000 (10^5) | Merge Sort/Building Segment Tree |
| O(N^2) | 10,000 | Bubble/Selection/Insertion Sort |
| O(N^3) | 300 | Floyd Warshall |
| O(N^4) | 100 | DP with 3 dimensions + O(n) loop |
| O(2^N) | 20 | DP/Bitmask Technique |
| O(2^N N^2) | 13 | DP Travelling Salesman Problem |
| O(N!), O(N^6) | 10 | Enumerating a Permutation |