Skip to content

Instantly share code, notes, and snippets.

@OrniNoor
Last active February 4, 2016 22:46
Show Gist options
  • Save OrniNoor/de00382755a55b9ef21b to your computer and use it in GitHub Desktop.
Save OrniNoor/de00382755a55b9ef21b to your computer and use it in GitHub Desktop.
All headers and macros of c++ code
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <string>
#include <cctype>
#include <stack>
#include <queue>
#include <list>
#include <vector>
#include <map>
#include <sstream>
#include <cmath>
#include <bitset>
#include <utility>
#include <set>
#include <numeric>
#include <ctime>
#define Infinity 2147483647
#define Pi acos(-1.0)
#define N 1000000
#define ll long long
const int dRow [] = {+1,-1,0,0};
const int dCol [] = {0,+1,+1,-1};
#define loop(i, a) for( int i = (0); i < (a); i++ )
#define loopSize(i, sz) for( size_t i = 0; i < sz.size (); i++ )
#define Set(a, s) memset(a, s, sizeof (a))
#define Max(a, b) (a < b ? b : a)
#define Min(a, b) (a > b ? b : a)
using namespace std;
int main()
{
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment