码迷,mamicode.com
首页 > 其他好文 > 详细

我做题、比赛的头文件,不断更新中

时间:2014-09-17 21:36:42      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   for   文件   div   

我做题、比赛的头文件~

特别是那个rep特别好用,写起来明显速度快多了

 

#include <cstdio>
#include <iostream>
s#include <string.h>
#include <cstdlib>
#include <algorithm>
#include <queue>
#include <vector>
#include <cmath>
#include <map>
#include <stack>
#include <stdlib.h>
using namespace std;
int const uu[4] = {1,-1,0,0};
int const vv[4] = {0,0,1,-1};
typedef long long ll;
int const maxn = 50005;
int const inf = 0x3f3f3f3f;
ll const INF = 0x7fffffffffffffffll;
double eps = 1e-10;
double pi = acos(-1.0);
#define rep(i,s,n) for(int i=(s);i<=(n);++i)
#define rep2(i,s,n) for(int i=(s);i>=(n);--i)
#define mem(v,n) memset(v,(n),sizeof(v))
#define lson l, m, rt<<1
#define rson m+1, r, rt<<1|1

 

  

 

我做题、比赛的头文件,不断更新中

标签:style   blog   color   io   os   ar   for   文件   div   

原文地址:http://www.cnblogs.com/fish7/p/3977993.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!