HDU 4046 Panda (ACM ICPC 2011北京赛区网络赛)
Panda
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?
For each test case:
First line is two integers n, m
n means the length of the letter, m means the query of the Panda. n<=50000,m<=10000
The next line has n characters 'b' or 'w', 'b' means black, 'w' means white.
The next m lines
Each line has two type
Type 0: answer how many love between L and R. (0<=L<=R<n)
Type 1: change the kth character to ch(0<=k<n and ch is ‘b’ or ‘w’)
The answer of the question.
5 2
bwbwb
0 0 4
0 1 3
5 5
wbwbw
0 0 4
0 0 2
0 2 4
1 2 b
0 0 4
1
1
Case 2:
2
1
1
0
- #include <iostream>
- #include <cstdio>
- #include <cstring>
- using namespace std;
- const int maxn=50010;
- char st[maxn];
- int n,m;
- //wbw
- struct node{
- int value,l,r;
- node(int l0=0,int r0=0,int value0=0){
- l=l0;r=r0;value=value0;
- }
- }a[maxn*4];
- void push_up(int k){
- a[k].value=a[2*k].value+a[2*k+1].value;
- if(st[a[2*k].r]!=st[a[2*k+1].l]){
- if(st[a[2*k].r]=='w' && a[2*k+1].l!=a[2*k+1].r && st[a[2*k+1].l+1]=='w'){
- a[k].value++;
- }
- if(st[a[2*k].r]=='b' && a[2*k].l!=a[2*k].r && st[a[2*k].r-1]=='w'){
- a[k].value++;
- }
- }
- }
- void build(int l,int r,int k){
- a[k].l=l;
- a[k].r=r;
- a[k].value=0;
- if(l!=r){
- int mid=(l+r)/2;
- build(l,mid,2*k);
- build(mid+1,r,2*k+1);
- push_up(k);
- }
- }
- void insert(int pos,char ch,int k){
- if(pos<=a[k].l && a[k].r<=pos){
- st[pos]=ch;
- }else{
- int mid=(a[k].l+a[k].r)/2;
- if(pos<=mid) insert(pos,ch,2*k);
- else insert(pos,ch,2*k+1);
- push_up(k);
- }
- }
- int query(int l,int r,int k){
- if(l<=a[k].l && a[k].r<=r){
- return a[k].value;
- }else{
- int mid=(a[k].l+a[k].r)/2;
- if(r<=mid) return query(l,r,2*k);
- else if(l>=mid+1) return query(l,r,2*k+1);
- else{
- int c=query(l,mid,2*k)+query(mid+1,r,2*k+1);
- if(st[mid]!=st[mid+1]){
- if(st[mid]=='w' && r>mid+1 && st[mid+2]=='w') c++;
- if(st[mid]=='b' && l<mid && st[mid-1]=='w') c++;
- }
- return c;
- }
- }
- }
- void computing(){
- int num;
- build(0,n-1,1);
- while(m-- >0){
- scanf("%d",&num);
- if(num){
- int pos;
- char ch;
- scanf("%d %c",&pos,&ch);
- insert(pos,ch,1);
- }else{
- int l,r;
- scanf("%d%d",&l,&r);
- printf("%d\n",query(l,r,1));
- }
- }
- }
- int main(){
- int t=0;
- scanf("%d",&t);
- for(int i=1;i<=t;i++){
- scanf("%d%d",&n,&m);
- scanf("%s",st);
- printf("Case %d:\n",i);
- computing();
- }
- return 0;
- }
HDU 4046 Panda (ACM ICPC 2011北京赛区网络赛)的更多相关文章
- hdu 4046 2011北京赛区网络赛G 线段树 ***
还带这么做的,卧槽,15分钟就被A了的题,居然没搞出来 若某位是1,则前两个为wb,这位就是w #include<cstdio> #include<cstring> #defi ...
- hdu 4044 2011北京赛区网络赛E 树形dp ****
专题训练 #include<stdio.h> #include<iostream> #include<string.h> #include<algorithm ...
- hdu 4050 2011北京赛区网络赛K 概率dp ***
题目:给出1-n连续的方格,从0开始,每一个格子有4个状态,左右脚交替,向右跳,而且每一步的步长必须在给定的区间之内.当跳出n个格子或者没有格子可以跳的时候就结束了,求出游戏的期望步数 0:表示不能到 ...
- hdu 4049 2011北京赛区网络赛J 状压dp ***
cl少用在for循环里 #include<cstdio> #include<iostream> #include<algorithm> #include<cs ...
- hdu 4045 2011北京赛区网络赛F 组合数+斯特林数 ***
插板法基础知识 斯特林数见百科 #include<iostream> #include<cmath> #include<cstdio> #include<cs ...
- hdu 4043 2011北京赛区网络赛D 概率+大数 **
推出公式为:P = A(2n,n)/(2^(2n)*n!) 但是不会大数,学完java再补
- hdu 4041 2011北京赛区网络赛B 搜索 ***
直接在字符串上搜索,注意逗号的处理 #include<cstdio> #include<iostream> #include<algorithm> #include ...
- [刷题]ACM/ICPC 2016北京赛站网络赛 第1题 第3题
第一次玩ACM...有点小紧张小兴奋.这题目好难啊,只是网赛就这么难...只把最简单的两题做出来了. 题目1: 代码: //#define _ACM_ #include<iostream> ...
- hdu 4002 欧拉函数 2011大连赛区网络赛B
题意:求1-n内最大的x/phi(x) 通式:φ(x)=x*(1-1/p1)*(1-1/p2)*(1-1/p3)*(1-1/p4)…..(1-1/pn),其中p1, p2……pn为x的所有质因数,x是 ...
随机推荐
- WPF:使用Json.NET在TreeView中树形显示JSON数据
原文 WPF:使用Json.NET在TreeView中树形显示JSON数据 据 读者可以参考这个开源的可以树形显示XML和JSON的工具: Mgen Object 603:XML/JSON树形显示小工 ...
- LoaderManager使用具体解释(三)---实现Loaders
这篇文字将介绍Loader<D>类,而且介绍自己定义Loader的实现.这是本系列的第三篇文章. 一:Loaders之前世界 二:了解LoaderManager 三:实现Loaders 四 ...
- 【Web】java date 到 Oracle date 精确到时分秒
有两种方法: java.util.Date startTime=new Date("2014/01/01 23:00:00"); 1.new Timestamp(startTime ...
- [NOIP 2005]-- 篝火晚会
额~~,对这组题感兴趣的具体的解题报告可以戳戳这里:http://wenku.baidu.com/view/878beb64783e0912a2162aa7.html?qq-pf-to=pcqq.c2 ...
- Easyui中tree组件实现搜索定位功能及展开节点定位
这几天遇到个input + tree 实现搜索功能的需求,在这里贴出来供大家参考下,如果你有更好的实现效果希望不腻赐教! 首先给大家看看效果 小二 上图 : 需要的部件知识: easyui ...
- DDL 和DML 区别
DML(Data Manipulation Language)数据操纵语言: 适用范围:对数据库中的数据进行一些简单操作,如insert,delete,update,select等. DDL(Data ...
- 树莓派常用Linux命令
转自小五义 1.ls命令:列出文件目录的常用命令,主要参数见下表. -a 列出目录下的所有文件,包括以.开头的隐含文件. -b 把文件名中不可输出的字符用反斜杠加字符编号(就象在C语言里一样)的形式列 ...
- 今天才知道mysql
insert MySQL中的INSERT语句和标准的INSERT不太一样,在标准的SQL语句中,一次插入一条记录的INSERT语句只有一种形式.INSERT INTO tablename(列名…) V ...
- nginx记录响应与POST请求日志
生产环境中的某些api出现故障,但是问题无法重现,但是又很想解决掉问题以及我们新项目上线,需要跟踪请求与响应的信息,可以预先找到一些bug,减少大面积的损失. 安装nginx与ngx_lua 响应日志 ...
- 给centOs添加epel源
epel简介: https://fedoraproject.org/wiki/EPEL/zh-cn 1. rpm -Uvh http://dl.fedoraproject.org/pub/epel/5 ...