Skip to content

Instantly share code, notes, and snippets.

@j4nu5
Created March 27, 2016 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j4nu5/d2b23dcdc20c9de48715 to your computer and use it in GitHub Desktop.
Save j4nu5/d2b23dcdc20c9de48715 to your computer and use it in GitHub Desktop.
C++11 template for USACO
/*
ID: sinha.k1
PROG: TEMPLATE
LANG: C++11
*/
#include <cstdio>
#include <cmath>
#include <cstring>
#include <ctime>
#include <cassert>
#include <iostream>
#include <algorithm>
#include <set>
#include <vector>
#include <sstream>
#include <typeinfo>
#include <list>
#include <map>
#include <queue>
#include <stack>
#include <unordered_map>
#include <unordered_set>
#include <numeric>
#include <utility>
#include <iomanip>
#include <bitset>
#include <fstream>
#include <limits>
using namespace std;
typedef long long int64;
int main(int argc, char const *argv[]) {
ofstream fout("TEMPLATE.out");
ifstream fin("TEMPLATE.in");
fin.close();
fout.close();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment