Panda(线段树)

来源:互联网 发布:扣扣软件下载 编辑:程序博客网 时间:2024/06/16 00:46

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<n) 
Type 1: change the kth character to ch(0<=k<n and ch is ‘b’ or ‘w’) 
 

Output

For each test case, output the case number first. 
The answer of the question. 
 

Sample Input

25 2bwbwb0 0 40 1 35 5wbwbw0 0 40 0 20 2 41 2 b0 0 4
 

Sample Output

Case 1: 1 1 Case 2: 2 1 1 0

解题思路:

这题废话真够多的。。。。其实就是用每个字符的下标记录该字符加上后两个字符能否构成wbw。能就记为1,不能记为0.

剩下的就是普通的线段树单点更新,和区间求和。

AC代码:

#include <iostream>#include <cstdio>#include <cmath>#include <cstring>using namespace std;const int maxn = 50010;#define lson l, m, rt << 1#define rson m + 1, r, rt << 1 | 1int sum[maxn << 2], ans[maxn];char str[maxn];void PushUp(int rt){    sum[rt] = sum[rt << 1] + sum[rt << 1 | 1];}void build(int l, int r, int rt){    sum[rt] = 0;    if(l == r)    {        sum[rt] = ans[l];        return;    }    int m = (l + r) >> 1;    build(lson);    build(rson);    PushUp(rt);}void update(int p, int c, int l, int r, int rt){    if(l == r)    {        sum[rt] = c;        return;    }    int m = (l + r) >> 1;    if(p <= m)        update(p, c, lson);    else        update(p, c, rson);    PushUp(rt);}int query(int L, int R, int l, int r, int rt){    if(L <= l && r <= R)        return sum[rt];    int m  = (l + r) >> 1;    int ret = 0;    if(L <= m)        ret += query(L, R, lson);    if(m < R)        ret += query(L, R, rson);    return ret;}int main(){    int t, n, m, kase = 0;    scanf("%d", &t);    while(t--)    {        printf("Case %d:\n", ++kase);        scanf("%d%d", &n, &m);        scanf("%s", str + 1);        int a, b;        char c[2];        memset(ans, 0, sizeof(ans));        for(int i = 1; i <= n - 2; i++)        {            if(str[i] == 'w' && str[i + 1] == 'b' && str[i + 2] == 'w')                ans[i] = 1;        }        build(1, n, 1);        while(m--)        {            scanf("%d", &a);            if(a)            {                scanf("%d%s", &b, c);                str[b + 1] = c[0];                for(int i = b + 1 - 2; i <= b + 1 && i + 2 <= n; i++)                {                    int t;                    if(i)                    {                        if(str[i] == 'w' && str[i + 1] == 'b' && str[i + 2] == 'w')                            t = 1;                        else                            t = 0;                        if(t != ans[i])                        {                            update(i, t, 1, n, 1);                            ans[i] = t;                        }                    }                }            }            else            {                scanf("%d%d", &a, &b);                if(b - a >= 2)                    printf("%d\n", query(a + 1, b - 1, 1, n, 1));                else                    printf("0\n");            }        }    }    return 0;}


0 0
原创粉丝点击