hdu 4046 Panda 树状数组
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4046
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?
#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 树状数组的更多相关文章
- HDU 2838 (DP+树状数组维护带权排序)
Reference: http://blog.csdn.net/me4546/article/details/6333225 题目链接: http://acm.hdu.edu.cn/showprobl ...
- HDU 2689Sort it 树状数组 逆序对
Sort it Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Sub ...
- hdu 5497 Inversion 树状数组 逆序对,单点修改
Inversion Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=5497 ...
- HDU 5493 Queue 树状数组
Queue Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=5493 Des ...
- POJ 2352 && HDU 1541 Stars (树状数组)
一開始想,总感觉是DP,但是最后什么都没想到.还暴力的交了一发. 然后開始写线段树,结果超时.感觉自己线段树的写法有问题.改天再写.先把树状数组的写法贴出来吧. ~~~~~~~~~~~~~~~~~~~ ...
- hdu 1541 (基本树状数组) Stars
题目http://acm.hdu.edu.cn/showproblem.php?pid=1541 n个星星的坐标,问在某个点左边(横坐标和纵坐标不大于该点)的点的个数有多少个,输出n行,每行有一个数字 ...
- hdu 4031(树状数组+辅助数组)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4031 Attack Time Limit: 5000/3000 MS (Java/Others) ...
- HDU 4325 Flowers 树状数组+离散化
Flowers Problem Description As is known to all, the blooming time and duration varies between differ ...
- hdu 5877 (dfs+树状数组) Weak Pair
题目:这里 题意: 给出一个n个结点的树和一个数k,每个结点都有一个权值,问有多少对点(u,v)满足u是v的祖先结点且二者的权值之积小于等于k. 从根结点开始dfs,假设搜的的点的权值是v,我们需要的 ...
随机推荐
- Apache中RewriteCond规则参数介绍
Apache中 RewriteCond语句对于我来说一直是个难点,多次试图去把它搞明白,都没有结构,这次我终于算大概知道它的意思了.RewriteCond就像我们程序中的if语句一样,表示如果符合某个 ...
- php 获取文件后缀名
$file_ext = strtolower(substr(strrchr($upload_file, '.'), 1)); strrchr:查找指定字符在字符串中的最后一次出现 string str ...
- web.xml中常见配置解读
文章转自:http://blog.csdn.net/sdyy321/article/details/5838791 有一般XML都必须有的版本.编码.DTD <web-app>下子元素&l ...
- Android LogCat使用详解
Android的Logcat用于显示系统的调试信息,可在分别以下几个地方查看和调用logcat: 1.eclipse的Debug模式或DDMS模式下的会有一个Logcat窗口,用于显示log日志 只需 ...
- linux内核SPI总线驱动分析(一)(转)
linux内核SPI总线驱动分析(一)(转) 下面有两个大的模块: 一个是SPI总线驱动的分析 (研究了具体实现的过程) 另一个是SPI总线驱动的编写(不用研究具体的实现过程) ...
- ETL之增量抽取方式
1.触发器方式 触发器方式是普遍采取的一种增量抽取机制.该方式是根据抽取要求,在要被抽取的源表上建立插入.修改.删除3个触发器,每当源表中的数据发生变化,就被相应的触发器将变化的数据写入一个增量日志表 ...
- 菜鸟学习Spring——60s利用JoinPoint获取参数的值和方法名称
一.概述 AOP的实现方法在上两篇博客中已经用了两种方法来实现现在的问题来了虽然我们利用AOP,那么客户端如何信息传递?利用JoinPoint接口来实现客户端给具体实现类的传递参数. 二.代码演示. ...
- React Native相关
安装相关工具参考(视频):http://ninghao.net/course/3001?a=26 学习参考:http://reactnative.cn/ 学习参考:http://www.ruanyif ...
- Android--将Bitmip转化成字符串
因为自己做的东西想要上传到服务器,所以就选择了将Bitmip转化成了字符串在上传 其它格式的图片我们好像可以用Bitmap.Factory 去将他们转化成BitMap 转化成字符串的代码 //将bit ...
- Android开发初始
由于本人一直的主攻方向是.NET平台,所以移动开发方面主要是Windows Phone平台,但是确实Windows Phone的市场占有率太小了,在加上本人是个技术迷,希望尝试新的东西,所以Andro ...