BRAINIAC2677 / Competitive-Programming

Contains Resources , practice problems and relevant templates.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Competitive-Programming

Contains Resources , practice problems and relevant templates.

Topics

Theorems And Concepts

Asymptotic Analysis

Constructive Algorithms

String Hashing

Dynamic Programming

Bitmask

Segment Tree

  • Practise Problems

    1. Playoff Tournament
  • Applications:

    • Sum, Min, Max, Product, GCD, LCM over a range of a changable array.
    • Number of Min/Max in a range.
    • Finding the K'th zero.
    • For a given value x we have to quickly find smallest index i such that the sum of the first i elements of the array a[] is greater or equal to x (assuming that the array a[] only contains non-negative values).
    • For a given value x and a range a[l…r] find the smallest i in the range a[l…r], such that a[i] is greater than x.
    • Finding subsegments with the maximal sum.

Merge Sort Tree

DFS

Interactive Problems

Expected Value

About

Contains Resources , practice problems and relevant templates.


Languages

Language:C++ 100.0%