Created
May 30, 2009 10:20
-
-
Save naoyat/120468 to your computer and use it in GitHub Desktop.
TopCoderでいつも使うマクロとか
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 <iostream> | |
#include <sstream> | |
#include <cstdio> | |
#include <cmath> | |
#include <cctype> | |
#include <algorithm> | |
#include <string> | |
#include <vector> | |
#include <deque> | |
#include <stack> | |
#include <queue> | |
#include <list> | |
#include <map> | |
#include <set> | |
// BEGIN CUT HERE | |
#include "cout.h" | |
// END CUT HERE | |
using namespace std; | |
typedef long long ll; | |
typedef vector<int> vi; | |
typedef vector<vector<int> > vvi; | |
typedef vector<string> vs; | |
typedef vector<long long> vll; | |
#define sz(a) int((a).size()) | |
#define pb push_back | |
#define all(c) (c).begin(),(c).end() | |
#define mset(arr,val) memset(arr,val,sizeof(arr)) | |
#define tr(c,i) for(typeof((c).begin()) i=(c).begin(); i!=(c).end(); i++) | |
#define rep(var,n) for(int var=0;var<(n);var++) | |
#define forr(var,from,to) for(int var=(from);var<=(to);var++) | |
#define found(s,e) ((s).find(e)!=(s).end()) | |
#define remove_(c,val) (c).erase(remove((c).begin(),(c).end(),(val)),(c).end()) | |
#define lastc(str) (*((str).end()-1)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment