摘要: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #define maxx 100002 7 using namespace std; 8 int a[20022],c[100022],x[100022],n,zuo[100022],you[100022]; 9 10 int lowbit(int x)11 {12 return x&(-x);13 }14 15 __int64 sum(int p)16 {17 __int64 ans=0;18 while(p>0)19 {20 ... 阅读全文
posted @ 2014-02-12 00:57 galaxy77 阅读(290) 评论(0) 推荐(0) 编辑