摘要: 题意:区间和 思路:树状数组 #include<iostream> #include<stdio.h> #include<string.h> using namespace std; int n,c[50005]; int lowbit(int i){ return i&-i; } void upd 阅读全文
posted @ 2015-08-17 15:33 gongpixin 阅读(228) 评论(0) 推荐(0) 编辑