HDU4046 Panda 线段树 单点更新

Problem Description

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?

Input

An integer T means the number of test cases T<=100

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

Output

For each test case, output the case number first.

The answer of the question.

Sample Input

2

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

Sample Output

Case 1:

1

1

Case 2:

2

1

1

0

题目大意

给一个长度为n的只含有w和b的字符串,有两种命令:

命令1 查询a-b中有几个”wbw”

命令2 将第a个字符换成b

解题思路

可以使用线段树来求解,叶节点的意义是从此处加上后面的两个是否构成”wbw”,构成就是1,构不成就是0.然后线段树中父节点等于两个叶子结点的和。初始化用0填充线段树。

需要注意字符串长度小于3时需要特判!

代码

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn = 50010;
char s[maxn];
int chk[maxn];
int segTree[maxn<<2];
int len;
int kase = 0;
void build(int l,int r,int node)
{
    if(l == r) {
        segTree[node] = chk[l];
        return;
    }
    build(l,(l+r)/2,node<<1);
    build((l+r)/2+1,r,(node<<1)+1);
    segTree[node] = segTree[node<<1] + segTree[(node<<1)+1];
}
int query(int a,int b,int l,int r,int node)
{
    if(r < a || l > b) return 0;
    if(a <= l && r <= b) return segTree[node];
    return query(a,b,l,(l+r)/2,node<<1)+query(a,b,(l+r)/2+1,r,(node<<1)+1);
}
void update(int x,int status,int l,int r,int node)
{
    if(l == r && l == x) {
        segTree[node] = status;
        return;
    }
    if(x <= (l+r)/2) update(x,status,l,(l+r)/2,node<<1);
    else update(x,status,(l+r)/2+1,r,(node<<1)+1);
    segTree[node] = segTree[node<<1] + segTree[(node<<1)+1];
}
int main()
{
    int t;
    scanf("%d",&t);
    while(t--) {
        memset(chk,0,sizeof chk);
        for(int i = 0 ; i < (maxn<<2) ; i ++) segTree[i] = 0;
        int q;
        scanf("%d%d",&len,&q);
        scanf("%s",s+1);
        if(len < 3) {
            printf("Case %d:\n",++kase);
            while(q--) {
                char s1[5],s2[5],s3[5];
                scanf("%s%s%s",s1,s2,s3);
                if(s1[0] == ‘0‘) printf("0\n");
            }
            continue;
        }
        for(int i = 1 ; i <= len-2 ; i ++) {
            if(s[i] == ‘w‘ && s[i+1] == ‘b‘ && s[i+2] == ‘w‘) chk[i] = 1;
        }
        build(1,len-2,1);
        printf("Case %d:\n",++kase);
        while(q--) {
            int cmd;
            scanf("%d",&cmd);
            if(cmd == 1) {//更新
                int x;
                char p;
                scanf("%d %c",&x,&p);
                x ++;
                if(s[x] == p) continue;
                s[x] = p;
                if(x == 1){
                    if(s[x] == ‘w‘ && s[x+1] == ‘b‘ && s[x+2] == ‘w‘) {
                        update(x,1,1,len-2,1);
                    }else {
                        update(x,0,1,len-2,1);
                    }
                }else if(x == 2) {
                    if(s[x-1] == ‘w‘ && s[x] == ‘b‘ && s[x+1] == ‘w‘) {
                        update(x-1,1,1,len-2,1);
                    }else {
                        update(x-1,0,1,len-2,1);
                    }
                    if(s[x] == ‘w‘ && s[x+1] == ‘b‘ && s[x+2] == ‘w‘) {
                        update(x,1,1,len-2,1);
                    }else {
                        update(x,0,1,len-2,1);
                    }
                }else if(x == len) {
                    if(s[x-2] == ‘w‘ && s[x-1] == ‘b‘ && s[x] == ‘w‘) {
                        update(x-2,1,1,len-2,1);
                    }else {
                        update(x-2,0,1,len-2,1);
                    }
                }else if(x == len-1) {
                    if(s[x-1] == ‘w‘ && s[x] == ‘b‘ && s[x+1] == ‘w‘) {
                        update(x-1,1,1,len-2,1);
                    }else {
                        update(x-1,0,1,len-2,1);
                    }
                    if(s[x-2] == ‘w‘ && s[x-1] == ‘b‘ && s[x] == ‘w‘) {
                        update(x-2,1,1,len-2,1);
                    }else {
                        update(x-2,0,1,len-2,1);
                    }
                }else {
                    if(s[x-2] == ‘w‘ && s[x-1] == ‘b‘ && s[x] == ‘w‘) {
                        update(x-2,1,1,len-2,1);
                    }else {
                        update(x-2,0,1,len-2,1);
                    }
                    if(s[x-1] == ‘w‘ && s[x] == ‘b‘ && s[x+1] == ‘w‘) {
                        update(x-1,1,1,len-2,1);
                    }else {
                        update(x-1,0,1,len-2,1);
                    }
                    if(s[x] == ‘w‘ && s[x+1] == ‘b‘ && s[x+2] == ‘w‘) {
                        update(x,1,1,len-2,1);
                    }else {
                        update(x,0,1,len-2,1);
                    }
                }
            }else {//查询
                int a,b;
                scanf("%d%d",&a,&b);
                printf("%d\n",query(a+1,b-1,1,len-2,1));
            }
        }
    }
    return 0;
}
时间: 2024-08-18 06:33:28

HDU4046 Panda 线段树 单点更新的相关文章

POJ训练计划2828_Buy Tickets(线段树/单点更新)

解题报告 题意: 插队完的顺序. 思路: 倒着处理数据,第i个人占据第j=pos[i]+1个的空位. 线段树维护区间空位信息. #include <iostream> #include <cstdio> #include <cstring> using namespace std; struct node { int x,v; } num[201000]; int sum[1000000],ans[201000]; void cbtree(int rt,int l,in

HDU2852_KiKi&#39;s K-Number(线段树/单点更新)

解题报告 题目传送门 题意: 意思很好理解. 思路: 每次操作是100000次,数据大小100000,又是多组输入.普通模拟肯定不行. 线段树结点记录区间里存在数字的个数,加点删点操作就让该点个数+1,判断x存在就查询[1,x]区间的个数和[1,x-1]的个数. 求x之后第k大的数就先确定小于x的个数t,第t+k小的数就是要求的. #include <iostream> #include <cstdio> #include <cstring> using namespa

POJ3264_Balanced Lineup(线段树/单点更新)

解题报告 题意: 求区间内最大值和最小值的差值. 思路: 裸线段树,我的线段树第一发.区间最值. #include <iostream> #include <cstring> #include <cstdio> #define inf 99999999 #define LL long long using namespace std; LL minn[201000],maxx[201000]; void update(LL root,LL l,LL r,LL p,LL

HDU1166_敌兵布阵(线段树/单点更新)

解题报告 题意: 略 思路: 线段树单点增减和区间求和. #include <iostream> #include <cstring> #include <cstdio> #define LL long long using namespace std; int sum[201000]; void update(int root,int l,int r,int p,int v) { int mid=(l+r)/2; if(l==r)sum[root]+=v; else

HDU1754_I Hate It(线段树/单点更新)

解题报告 题意: 略 思路: 单点替换,区间最值 #include <iostream> #include <cstring> #include <cstdio> #define inf 99999999 using namespace std; int maxx[808000]; void update(int root,int l,int r,int p,int v) { int mid=(l+r)/2; if(l==r)maxx[root]=v; else if(

Uva 12299 RMQ with Shifts(线段树 + 单点更新 )

Uva 12299 RMQ with Shifts (线段树 + 单点更新) 题意: 对于给定的序列 x[i]给出一个操作 shift(a,b,c,d,e) 对应的是将 x[a]与x[b] x[b]与x[c] 这样相邻的两两交换For example, if A={6, 2, 4, 8, 5, 1, 4}then shift(2, 4, 5, 7) yields {6, 8, 4, 5, 4, 1, 2}. After that,shift(1, 2) yields {8, 6, 4, 5, 4

POJ2352_Stars(线段树/单点更新)

解题报告 题意: 坐标系中,求每颗星星的左下角有多少星星. 思路: 把横坐标看成区间,已知输入是先对y排序再对x排序,每次加一个点先查询该点x坐标的左端有多少点,再更新点. #include <iostream> #include <cstdio> #include <cstring> using namespace std; int sum[200000]; struct node { int x,y; } p[20000]; void push_up(int roo

HDU 1754 I Hate It (线段树 单点更新)

题目链接 中文题意,与上题类似. 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <queue> 5 #include <cstdlib> 6 #include <algorithm> 7 const int maxn = 200000+10; 8 using namespace std; 9 int a[maxn], n, m; 10

HDU 1166 敌兵布阵(线段树单点更新,板子题)

敌兵布阵 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 87684    Accepted Submission(s): 36912 Problem Description C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了.A国在海岸线沿直线布置了N个工兵营地,Derek和Tidy的任务