├── AtCoder DP Contest ├── A - Frog1.cpp ├── B - Frog2.cpp ├── C - Vacation.cpp ├── D - Knapsack 1.cpp ├── E - Knapsack 2.cpp ├── F - LCS.cpp ├── G - Longest Path.cpp ├── H - Grid 1.cpp ├── I - Coins.cpp ├── J - Sushi.cpp ├── K - Stones.cpp ├── L - Deque.cpp ├── M - Candies.cpp ├── N - Slimes.cpp ├── O - Matching.cpp ├── P - Independent Set.cpp ├── Q - Flowers.cpp └── S - Digit Sum.cpp ├── BST.cpp ├── BasicGraph.cpp ├── CHT_offline.cpp ├── Divisors.cpp ├── Kadane.cpp ├── Meet in the middle.cpp ├── Point Update.cpp ├── Point update Seg Tree .cpp ├── Range update (add,set) Range Query.cpp ├── SCC + bitset.cpp ├── Trie.cpp ├── dfs.cpp ├── gcd.cpp ├── monotonic deque.cpp ├── nthRoot.cpp └── template.cpp /AtCoder DP Contest/A - Frog1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/A - Frog1.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/B - Frog2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/B - Frog2.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/C - Vacation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/C - Vacation.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/D - Knapsack 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/D - Knapsack 1.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/E - Knapsack 2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/E - Knapsack 2.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/F - LCS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/F - LCS.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/G - Longest Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/G - Longest Path.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/H - Grid 1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/H - Grid 1.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/I - Coins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/I - Coins.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/J - Sushi.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AtCoder DP Contest/K - Stones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/K - Stones.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/L - Deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/L - Deque.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/M - Candies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/M - Candies.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/N - Slimes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/N - Slimes.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/O - Matching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/O - Matching.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/P - Independent Set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/P - Independent Set.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/Q - Flowers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/Q - Flowers.cpp -------------------------------------------------------------------------------- /AtCoder DP Contest/S - Digit Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/AtCoder DP Contest/S - Digit Sum.cpp -------------------------------------------------------------------------------- /BST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/BST.cpp -------------------------------------------------------------------------------- /BasicGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/BasicGraph.cpp -------------------------------------------------------------------------------- /CHT_offline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/CHT_offline.cpp -------------------------------------------------------------------------------- /Divisors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/Divisors.cpp -------------------------------------------------------------------------------- /Kadane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/Kadane.cpp -------------------------------------------------------------------------------- /Meet in the middle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/Meet in the middle.cpp -------------------------------------------------------------------------------- /Point Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/Point Update.cpp -------------------------------------------------------------------------------- /Point update Seg Tree .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/Point update Seg Tree .cpp -------------------------------------------------------------------------------- /Range update (add,set) Range Query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/Range update (add,set) Range Query.cpp -------------------------------------------------------------------------------- /SCC + bitset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/SCC + bitset.cpp -------------------------------------------------------------------------------- /Trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/Trie.cpp -------------------------------------------------------------------------------- /dfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/dfs.cpp -------------------------------------------------------------------------------- /gcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/gcd.cpp -------------------------------------------------------------------------------- /monotonic deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/monotonic deque.cpp -------------------------------------------------------------------------------- /nthRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/nthRoot.cpp -------------------------------------------------------------------------------- /template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akash5307/CP-templates/HEAD/template.cpp --------------------------------------------------------------------------------