标签:des style blog http color os io 数据
Leyni | ||||||
|
||||||
Description | ||||||
Leyni被人掳走,身在水深火热之中...
现在小奈叶专心战斗,Leyni昏迷,他们无法得知小护盾遭受的有效攻击次数,他们需要你的帮助。
只要能帮到他们,Leyni就会赠送出一份小奈叶写真集。 |
||||||
Input | ||||||
第一行是一个整数T,表示有多少组测试数据。 |
||||||
Output | ||||||
每一组测试数据,先输出一行"Case i:",i表示第i组测试数据,从1开始计数。 |
||||||
Sample Input | ||||||
1 |
||||||
Sample Output | ||||||
Case 1: |
#include <iostream> #include <stdio.h> #include <string.h> using namespace std; const int MAXN=100001; int c[MAXN],p[MAXN]; int xiji; int n,q,t,aa,b; int lowbit(int x) { return x&(-x); } void add(int x,int val) { int i=x; while(i<=n) { c[i]+=val; i+=lowbit(i); } } int get_sum(int x) { int s=0; while(x>0) { s+=c[x]; x-=lowbit(x); } return s; } int main() { int k; int s; char str[20]; s=0; scanf("%d",&k); for(int i=0;i<k;i++) { s++; memset(c,0,sizeof(c)); scanf("%d%d%d",&n,&q,&t); for(int i=1; i<=n; i++) p[i]=-t; xiji=0; printf("Case %d:\n",s); for(int i=1; i<=q; i++) { scanf("%s",&str); if(str[0]==‘A‘) { xiji++; scanf("%d",&aa); if(p[aa]+t<=xiji) p[aa]=xiji; else { add(aa,1); } } else if(str[0]==‘Q‘) { scanf("%d%d",&aa,&b); if(aa>b) swap(aa,b); printf("%d\n",get_sum(b)-get_sum(aa-1)); } } } return 0; } 注:没有线段树快哦~~~~ get_sum()函数求起点到该点的和 ******************************************************
http://blog.csdn.net/shahdza/article/details/6314818
******************************************************
HRBUST 1161 树状数组区间更新求和,布布扣,bubuko.com
标签:des style blog http color os io 数据
原文地址:http://www.cnblogs.com/zhangying/p/3903221.html