Thanks to visit codestin.com
Credit goes to github.com

Skip to content

KemamanWebTech/competitive-programming

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

682 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Competitive Programming

Problem Cateogires

  • Codeforces
  • UT Austin ACM
  • HackerRank
  • Google CodeJam
  • USACO
  • UVa Online Judge
  • LeetCode
  • TopCoder
  • Miscellaneous Problem

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

About

My own competitive programming repository

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 92.5%
  • Python 6.4%
  • Other 1.1%