Skip to content

Instantly share code, notes, and snippets.

View DarkGuy10's full-sized avatar
🥢
Ittadakimasu

CerealSoup DarkGuy10

🥢
Ittadakimasu
  • ~/
View GitHub Profile
@DarkGuy10
DarkGuy10 / cptemplate.cpp
Created June 9, 2025 05:09
CP template file
#include <bits/stdc++.h>
using namespace std;
typedef long long let;
typedef vector<let> vec;
typedef map<let, let> omap;
typedef set<let> oset;
typedef set<let, greater<let>> revset;
typedef pair<let, let> couple;
typedef vector<couple> couples;
typedef vector<vector<let>> graph;