Skip to content

Instantly share code, notes, and snippets.

@shanky061
Last active August 29, 2015 14:14
Show Gist options
  • Save shanky061/19aa8be6ecaa45ff58be to your computer and use it in GitHub Desktop.
Save shanky061/19aa8be6ecaa45ff58be to your computer and use it in GitHub Desktop.
Sport-Programming-Template
// {{{ boilerplate code <--------------------------------------------
#include<algorithm>
#include<bitset>
#include<climits>
#include<cmath>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<list>
#include<queue>
#include<stack>
#include<vector>
#define FOR(I, A, B) for(int I = (A); I < (B); I++)
#define REP(I, B) FOR(I, 0, B)
#define DEC(I, N) for(int I = (N); I >= 0; I--)
#define ALL(V) (V).begin(),(V).end()
#define CLR(A, B) memset(A, B, sizeof(A))
#define MP make_pair
#define PB push_back
#define LB lower_bound
#define UB upper_bound
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef vector<int> VI;
typedef pair<int, int> PII;
// }}}
int main()
{
ios_base::sync_with_stdio(false);
int T; cin >> T;
REP(i, T)
{
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment