题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4046

When I wrote down this letter, you may have been on the airplane to U.S.
We have known for 15 years, which has exceeded one-fifth of
my whole life. I still remember the first time we went to the movies, the first
time we went for a walk together. I still remember the smiling face you wore
when you were dressing in front of the mirror. I love your smile and your
shining eyes. When you are with me, every second is wonderful.
The more
expectation I had, the more disappointment I got. You said you would like to go
to U.S.I know what you really meant. I respect your decision. Gravitation is not
responsible for people falling in love. I will always be your best friend. I
know the way is difficult. Every minute thinking of giving up, thinking of the
reason why you have held on for so long, just keep going on. Whenever you’re
having a bad day, remember this: I LOVE YOU.
I will keep waiting, until you
come back. Look into my eyes and you will see what you mean to me.
There are
two most fortunate stories in my life: one is finally the time I love you
exhausted. the other is that long time ago on a particular day I met
you.
Saerdna.

It comes back to several years ago. I still remember
your immature face.
The yellowed picture under the table might evoke the
countless memory. The boy will keep the last appointment with the girl, miss the
heavy rain in those years, miss the love in those years. Having tried to conquer
the world, only to find that in the end, you are the world. I want to tell you I
didn’t forget. Starry night, I will hold you tightly.

Saerdna loves
Panda so much, and also you know that Panda has two colors, black and
white.
Saerdna wants to share his love with Panda, so he writes a love letter
by just black and white.
The love letter is too long and Panda has not that
much time to see the whole letter.
But it's easy to read the letter, because
Saerdna hides his love in the letter by using the three continuous key words
that are white, black and white.
But Panda doesn't know how many Saerdna's
love there are in the letter.
Can you help Panda?

题意描述:给出一个仅包含b和w字符的字符串,然后很多操作:
type=0 : l r,求出区间[l,r]包含wbw这样字符三元组的个数;
type=1 : k ch,把第k个字符改为ch。
算法分析:树状数组。hdu上听说这道题数据很水,暴力就可以过,那么这道题就没有情趣了。下面简单介绍一下树状数组的做法:
首先遍历字符串,如果在 i 位置发现[i,i+2]连续字符串为wbw,则运用树状数组的方法add(i,1),修改字符的时候,判断修改前后wbw的数量就可以了。
然后询问这里有点绕,如果询问[l,r]的话,把r的位置往前移动两个位置,l往前移动一个位置。比如字符串为wbwbw(第一个位置序号为1),询问[1,3]的个数,我们就相当于询问[0,1],这样避免了第二个wbw影响了这个询问。还有,需要特判一下改后的这个区间是否l<r即可。
 #include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#define inf 0x7fffffff
using namespace std;
typedef long long LL;
const int maxn=+; int n,m;
int c[maxn];
char str[maxn]; int lowbit(int u) {return u&(-u); }
void add(int i,int dd)
{
while (i<=maxn)
{
c[i] += dd;
i += lowbit(i);
}
} int sum(int i)
{
int ret=;
while (i>)
{
ret += c[i];
i -= lowbit(i);
}
return ret;
} int main()
{
int t,ncase=;scanf("%d",&t);
while (t--)
{
scanf("%d%d",&n,&m);
scanf("%s",str+);
printf("Case %d:\n",ncase++);
memset(c,,sizeof(c));
int len=strlen(str+);
for (int i= ;i<=len- ;i++)
{
if (str[i]=='w' && str[i+]=='b' && str[i+]=='w')
add(i,);
}
char ch[];
int l,r;
int type;
for (int i= ;i<m ;i++)
{
scanf("%d",&type);
if (type==)
{
scanf("%d%d",&l,&r);
if (l>=r-) printf("0\n");
else printf("%d\n",sum(r-)-sum(l));
}
else
{
scanf("%d%s",&l,ch);
if (l+->= && l+<=n)
{
if (str[l+-]=='w'&&str[l+-]=='b')
{
if (str[l+]=='w' && ch[]=='b')
add(l+-,-);
else if (str[l+]=='b'&&ch[]=='w')
add(l+-,);
}
}
if (l+->= && l++<=n)
{
if (str[l+-]=='w'&&str[l++]=='w')
{
if (str[l+]=='b'&&ch[]=='w')
add(l+-,-);
else if (str[l+]=='w'&&ch[]=='b')
add(l+-,);
}
}
if (l+>= && l++<=n)
{
if (str[l++]=='b'&&str[l++]=='w')
{
if (str[l+]=='w'&&ch[]=='b')
add(l+,-);
else if (str[l+]=='b'&&ch[]=='w')
add(l+,);
}
}
str[l+]=ch[];
}
}
}
return ;
}

hdu 4046 Panda 树状数组的更多相关文章

  1. HDU 2838 (DP+树状数组维护带权排序)

    Reference: http://blog.csdn.net/me4546/article/details/6333225 题目链接: http://acm.hdu.edu.cn/showprobl ...

  2. HDU 2689Sort it 树状数组 逆序对

    Sort it Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Sub ...

  3. hdu 5497 Inversion 树状数组 逆序对,单点修改

    Inversion Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=5497 ...

  4. HDU 5493 Queue 树状数组

    Queue Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=5493 Des ...

  5. POJ 2352 &amp;&amp; HDU 1541 Stars (树状数组)

    一開始想,总感觉是DP,但是最后什么都没想到.还暴力的交了一发. 然后開始写线段树,结果超时.感觉自己线段树的写法有问题.改天再写.先把树状数组的写法贴出来吧. ~~~~~~~~~~~~~~~~~~~ ...

  6. hdu 1541 (基本树状数组) Stars

    题目http://acm.hdu.edu.cn/showproblem.php?pid=1541 n个星星的坐标,问在某个点左边(横坐标和纵坐标不大于该点)的点的个数有多少个,输出n行,每行有一个数字 ...

  7. hdu 4031(树状数组+辅助数组)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4031 Attack Time Limit: 5000/3000 MS (Java/Others)    ...

  8. HDU 4325 Flowers 树状数组+离散化

    Flowers Problem Description As is known to all, the blooming time and duration varies between differ ...

  9. hdu 5877 (dfs+树状数组) Weak Pair

    题目:这里 题意: 给出一个n个结点的树和一个数k,每个结点都有一个权值,问有多少对点(u,v)满足u是v的祖先结点且二者的权值之积小于等于k. 从根结点开始dfs,假设搜的的点的权值是v,我们需要的 ...

随机推荐

  1. Knockout.Js官网学习(click绑定)

    前言 click绑定在DOM元素上添加事件句柄以便元素被点击的时候执行定义的JavaScript 函数.大部分是用在button,input和连接a上,但是可以在任意元素上使用. 简单示例 <h ...

  2. Python pass 语句使用示例

    Python pass 语句的使用方法示例.Python pass是空语句,pass语句什么也不做,一般作为占位符或者创建占位程序,是为了保持程序结构的完整性,pass语句不会执行任何操作,比如: P ...

  3. linux资源监控命令详解

    Linux统计/监控工具SAR详细介绍:要判断一个系统瓶颈问题,有时需要几个 sar 命令选项结合起来使用,例如: 怀疑CPU存在瓶颈,可用 sar -u 和 sar -q deng 等来查看 怀疑内 ...

  4. Android之Selector、Shape介绍

    ------------整理自网络---------------------- <?xml version=”1.0″ encoding=”utf-8″?> <shape xmlns ...

  5. 010-python基础-数据类型-字符串操作

    1.移除空白 username.strip() 2.分割 names = "alex,jack,rain" names_1 = names.split(",") ...

  6. SRF之页面

    页面呈现采用Razor模板   1.母模板说明 _Main.cshtml:基础母模板 _ListLayout.cshtml:列表页面 _EditDialog.cshtml:编辑对话框 _EditLay ...

  7. C# 页面抓取类

    抓取网站页面的内容,简单的类应用,代码如下: /// <summary> /// 获取页面内容 /// </summary> /// <param name=" ...

  8. Android WebView代理设置方法(API10~21适用)

    最近碰到个需求需要在APP中加入代理,HttpClient的代理好解决,但是WebView碰到些问题,然后找到个API10~API21都通用的类,需要用的同学自己看吧,使用方法,直接调用类方法setP ...

  9. 对 cloudwu 简单的 cstring 进行简单解析

    题外话 以前也用C写过字符串,主要应用的领域是,大字符串,文件读取方面.写的很粗暴,用的凑合着.那时候看见云风前辈的一个开源的 cstring 串. 当时简单观摩了一下,觉得挺好的.也没细看.过了较长 ...

  10. 如何在Eclipse中配置Tomcat

    1.Eclipse EE 配置Tomcat Eclipse EE 主要用于Java Web开发和J2EE项目开发.Eclipse EE中配置Tomcat比较简单,新建一个Tomcat Server即可 ...