Skip to content

Instantly share code, notes, and snippets.

@tsu-nera
Last active December 20, 2015 16:19
Show Gist options
  • Save tsu-nera/6160471 to your computer and use it in GitHub Desktop.
Save tsu-nera/6160471 to your computer and use it in GitHub Desktop.
TopCoder Define
#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