Last active
December 20, 2015 16:19
-
-
Save tsu-nera/6160471 to your computer and use it in GitHub Desktop.
TopCoder Define
This file contains hidden or 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 <algorithm> | |
#include <iostream> | |
#include <map> | |
#include <numeric> | |
#include <set> | |
#include <sstream> | |
#include <string> | |
#include <vector> | |
#include <cmath> | |
using namespace std; | |
#define FOR(i,s,e) for (int i = int(s); i != int(e); i++) | |
#define REP(i,e) for (int i = 0; i != int(e); i++) | |
#define FORIT(i, A) for (auto i : A) | |
#define ISEQ(c) (c).begin(), (c).end() | |
#define PRINT(x) cout << (x) << endl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment