Skip to content

Instantly share code, notes, and snippets.

@usmarcv
Last active July 8, 2022 12:17
Show Gist options
  • Save usmarcv/1cddd870f4637e744d54bc26199881d1 to your computer and use it in GitHub Desktop.
Save usmarcv/1cddd870f4637e744d54bc26199881d1 to your computer and use it in GitHub Desktop.
My skeleton template using cpp
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define INF 0x3f3f3f3f
#define _ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
typedef long long ll;
// -- Graph structure --
typedef pair<int, int> ii;
typedef vector<ii> vii;
typedef vector<int> vi;
// ----------------------
int main(){_
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment