Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 1.66 KB

README.md

File metadata and controls

59 lines (44 loc) · 1.66 KB

Competitive Programming

My personal collection of competitive programming code, templates, tools...

Content

Graphs

Geometry

Maths

Data structures

Strings

Note

using the above code alone won't compile, make sure the add the template above below the code

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef long double ld;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;

#define fastio ios_base::sync_with_stdio(false), cin.tie(0), cout.tie(0)
#define debug(x) cerr << #x << " is " << x << "\n"
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()