Skip to content

Instantly share code, notes, and snippets.

@orleika
Created February 13, 2015 14:35
Show Gist options
  • Save orleika/8fa47c724586e5d32ccc to your computer and use it in GitHub Desktop.
Save orleika/8fa47c724586e5d32ccc to your computer and use it in GitHub Desktop.
プロコン用
#include <bits/stdc++.h>
#define dump(x) cerr << #x << "=" << (x) << endl
#define FOR(i, a, b) for(int i = int(a); i < int(b); ++i)
#define rep(i, n) FOR(i, 0, n)
#define all(p) (p).begin(), (p).end()
#define rall(p) (p).rbegin(), (p).rend()
#define MP make_pair
#define PB push_back
typedef unsigned int uint;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<string> vs;
typedef pair<int, int> pii;
const double EPS = 1e-10;
const double PI = acos(-1.0);
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