Skip to content

Instantly share code, notes, and snippets.

@rcabreu
Created August 15, 2013 14:28
Show Gist options
  • Save rcabreu/6241254 to your computer and use it in GitHub Desktop.
Save rcabreu/6241254 to your computer and use it in GitHub Desktop.
C++::templates::DefaultTemplate
#include <algorithm>
#include <cassert>
#include <cctype>
#include <climits>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <functional>
#include <iomanip>
#include <iostream>
#include <limits>
#include <list>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <sstream>
#include <vector>
#include <utility>
using namespace std;
typedef long long ll;
typedef pair<int, int> PII;
#define Max(a, b) a > b ? a : b
#define Min(a, b) a < b ? a : b
#define INF (1<<30)
int main() {
ios_base::sync_with_stdio(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment