Skip to content

Instantly share code, notes, and snippets.

@unaimillan
Last active December 15, 2017 14:13
Show Gist options
  • Save unaimillan/c7cf88818ad935dbdcb5ed9d1be54a2b to your computer and use it in GitHub Desktop.
Save unaimillan/c7cf88818ad935dbdcb5ed9d1be54a2b to your computer and use it in GitHub Desktop.
My Cpp template for olympiads
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
constexpr int MAXN = 1000;
constexpr int INF = 2*1000*1000*1000;
int n, m, k;
int main(int argc, char[] *argv)
{
//ios::sync_with_stdio(false);
//cin.tie(0);
//freopen("input.txt", "r", stdin);
//freopen("output.txt", "w", stdout);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment