Skip to content

Instantly share code, notes, and snippets.

@lmatt-bit
Created May 6, 2012 08:24
Show Gist options
  • Select an option

  • Save lmatt-bit/2621066 to your computer and use it in GitHub Desktop.

Select an option

Save lmatt-bit/2621066 to your computer and use it in GitHub Desktop.
google code jam template
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
#include <string>
#include <list>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iomanip>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cstring>
#include <cstdio>
using namespace std;
typedef vector<int> VI;
typedef vector<VI> VVI;
typedef pair<int, int> PII;
typedef long long ll;
#define PB push_back
#define SZ(a) int((a).size())
#define ALL(c) (c).begin(), (c).end()
#define TR(c, i) for(typeof((c).begin()) i = (c).begin(); i != (c).end(); i++)
#define present(c,x) ((c).find(x) != (c).end())
#define cpresent(c,x) (find(ALL(c),x) != (c).end())
#define debug(var) cout<<#var<<"="<<(var)<<endl
void func()
{
}
int main()
{
int t;
cin >> t;
for(int ti = 1; ti <= t; ti++)
{
cout << "Case #" << ti << ":";
func();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment