#include <stdio.h>
#include <algorithm>
#include <queue>
#include <stack>
#include <utility>
#include <cmath>
#include <iostream>
#include <list>
#include <set>
#include <map>
Go to the source code of this file.
Defines |
#define | FOR(q, n) for(int q = 0; q < (int) n; ++q) |
#define | FOREACH(it, container) |
#define | fi first |
#define | se second |
#define | mp make_pair |
#define | pb push_back |
Typedefs |
typedef long long int | ll |
typedef long double | ld |
typedef pair< int, int > | PII |
Define Documentation
#define FOR |
( |
|
q, |
|
|
|
n |
|
) |
| for(int q = 0; q < (int) n; ++q) |
#define FOREACH |
( |
|
it, |
|
|
|
container |
|
) |
| |
Value:for( \
__typeof(container.begin()) it = container.begin(); \
it != container.end(); ++it)
Typedef Documentation
typedef pair<int,int> PII |