摘要:
hdoj 1166题目大意:解决:树状数组简单题,不解释#include <iostream> #include <cstdio>#include <cstring>using namespace std;#define L(x) (x<<1)#define R(x) (x<<1|1)#define M(x,y) ((x+y)>>1)int n;int c[50005];int lowbit(int x){ return x&(-x);}void updata(int p,int inc){ for(int i=p 阅读全文
posted @ 2011-09-16 19:10
猿类的进化史
阅读(314)
评论(0)
推荐(0)
浙公网安备 33010602011771号