Last active
December 15, 2017 14:13
-
-
Save unaimillan/c7cf88818ad935dbdcb5ed9d1be54a2b to your computer and use it in GitHub Desktop.
My Cpp template for olympiads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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