Panda

来源:互联网 发布:微信专用淘宝链接 编辑:程序博客网 时间:2024/05/21 15:45

Panda

Time Limit: 10000/4000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1714    Accepted Submission(s): 585


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<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
 
/*runtime error求解释啊....................思路:每个节点保存,最左边两个数和右边两个数*/#include<iostream>#include<cstdio>using namespace std;#define MAX 500000typedef struct infor{int l , r , v ;int lnum1,lnum2; int rnum1,rnum2;}infor ;infor t[4*MAX] ;int a[MAX + 3 ] ;char b[MAX+3];void up(int rt ){t[rt].v = t[rt*2].v + t[rt*2 + 1].v ;if(t[rt*2].rnum2!=-1&&(t[rt*2].rnum2 == 1&&t[rt*2].rnum1==0&&t[rt*2+1].lnum1==1))t[rt].v++;if(t[rt*2].rnum1 == 1 && (t[rt*2+1].lnum1 ==0 && t[rt*2 + 1].lnum2 == 1&&t[rt*2 + 1].lnum2 != -1))t[rt].v++;t[rt].lnum1=t[rt*2].lnum1 ;t[rt].lnum2=t[rt*2].lnum2 ;if(t[rt*2].lnum2 == -1){if(t[rt*2+1].lnum2==-1)t[rt].lnum2 = t[rt*2 + 1].lnum1 ;elset[rt].lnum2 = t[rt*2 + 1].lnum2 ;}t[rt].rnum1 = t[rt*2+1].rnum1 ;t[rt].rnum2 = t[rt*2+1].rnum2 ;if(t[rt*2 + 1].rnum2 == -1){t[rt].rnum2 = t[rt*2].rnum1;}}void create(int rt , int l , int r){t[rt].l = l ;t[rt].r = r;t[rt].v = 0 ;t[rt].lnum1 = -1;t[rt].lnum2 = -1;t[rt].rnum1 = -1;t[rt].rnum2 = -1;if(l == r){t[rt].v = 0 ;if(a[l]==1)t[rt].lnum1=t[rt].rnum1 = 1;elset[rt].lnum1=t[rt].rnum1 = 0;return ;}int mid = ( l + r ) / 2 ;create(rt*2 , l , mid );create(rt*2 + 1 , mid + 1 , r );up(rt);}void update(int rt , int l , int r , int x , int y ){if(t[rt].l  ==  t[rt].r ){t[rt].lnum1=t[rt].rnum1  = y ;return ;}int mid = (t[rt].l + t[rt].r ) / 2 ;if(x>mid)update(rt*2 + 1 , mid + 1 , r , x , y );elseupdate(rt*2 , l , mid ,  x,  y );up(rt);}int cal(int rt , int l , int r , int x , int y){if(x<=t[rt].l && y>=t[rt].r )return t[rt].v ;int mid = (t[rt].l + t[rt].r ) / 2 ;if(x>mid)return cal(rt*2 + 1 ,mid + 1, r , x , y  );else if(y<=mid)return cal(rt*2 , l , mid , x , y );else{int ret=cal(rt*2 , l ,mid  , x , y )+cal(rt*2 + 1 , mid + 1 , r ,  x , y );if(t[rt*2].rnum2!=-1&&(t[rt*2].rnum2 == 1&&t[rt*2].rnum1==0&&t[rt*2+1].lnum1==1))ret++;if(t[rt*2].rnum1 == 1 && (t[rt*2+1].lnum1 ==0 && t[rt*2 + 1].lnum2 == 1&&t[rt*2 + 1].lnum2 != -1))ret++;return ret ;}}int main(){int t1,count=1; scanf("%d",&t1);while(t1--){memset(a,0,sizeof(0));int m ,n ;scanf("%d %d",&m,&n);printf("Case %d:\n",count++);if(m>0){scanf("%s",b);for(int i=0;i<m;i++){if(b[i]=='b')a[i] = 0 ;elsea[i] = 1 ;}create(1 , 0 , m-1 );}while(n--){int q , x , y ;char ch ;scanf("%d %d %c",&q,&x,&ch);if(q==0){if(m<=0){cout<<"0"<<endl;continue ;}y=ch-'0';printf("%d\n",cal(1 , 0 , m-1 , x , y));}else{if(m<=0){continue ;}if(ch == 'b' )y = 0 ;elsey = 1 ;update(1 , 0 , m-1 , x , y);}}}return 0;}

 注:转
#include<iostream>#include<string>using namespace std;struct TREE{int l;int r;int w;};int n,m;TREE tree[450010];char str[50010];void build(int i,int l,int r){tree[i].l=l;tree[i].r=r;if(r==l){if(str[l]=='w' && str[l+1]=='b' && str[l+2]=='w')tree[i].w=1;elsetree[i].w=0;return;}int mid=(l+r)/2;build(2*i,l,mid);build(2*i+1,mid+1,r);tree[i].w=tree[2*i].w+tree[2*i+1].w;}int ans;void query(int i,int l,int r){if(tree[i].l>r || tree[i].r<l)return;if(tree[i].l>=l && tree[i].r<=r){ans+=tree[i].w;return;}query(2*i,l,r);query(2*i+1,l,r);}void updata(int i,int l,int r){if(tree[i].l>r || tree[i].r<l)return;if(tree[i].l==tree[i].r){if(str[tree[i].l]=='w' && str[tree[i].l+1]=='b' && str[tree[i].l+2]=='w')tree[i].w=1;elsetree[i].w=0;return;}updata(2*i,l,r);updata(2*i+1,l,r);tree[i].w=tree[2*i].w+tree[2*i+1].w;}int main(){int t,a,i,b,d,l,r,len,o=1;char c;//freopen("in.txt","r",stdin);scanf("%d",&t);while(t--){scanf("%d%d",&n,&m);scanf("%*c");for(i=0;i<n;i++){scanf("%c",&str[i]);}len=n-3;printf("Case %d:\n",o++);if(len>=0){build(1,0,len);for(i=0;i<m;i++){scanf("%d",&d);if(d==0){scanf("%d%d",&a,&b);ans=0;if(b-a>=2){b-=2;query(1,a,b);}printf("%d\n",ans);}else{scanf("%d %c",&a,&c);str[a]=c;l=(a-2)>0?(a-2):0;r=(a+2)<len?(a+2):len;updata(1,l,r);}}}else{for(i=0;i<m;i++){scanf("%d",&d);if(d==0){scanf("%d%d",&a,&b);ans=0;printf("%d\n",ans);}else{scanf("%d %c",&a,&c);}}}}return 0;}#include<iostream>#include<stdio.h>#include<cstring>using namespace std;int n;int a[50001];void add(int x,int y)//改变下表为x的元素的值 会导致所有x的父节点的值的改变{    for(;x<=n;x+=x&-x)    a[x]+=y;}int sum1(int x){    int ans=0;    for(;x>0;x-=x&-x)    {        ans+=a[x];    }    return ans;}int main(){    int m;    char str[50001];    int t;    cin>>t;   for(int ll=1;ll<=t;ll++)    {        scanf("%d %d",&n,&m);        scanf("%s",str+1);        memset(a,0,sizeof(a));        for(int i=2;i<n;i++)        {            if(str[i]=='b'&&str[i-1]=='w'&&str[i+1]=='w')            {                add(i,1);            }        }        printf("Case %d:\n",ll);        for(int i=1;i<=m;i++)        {            int k,q,p;            char c;            scanf("%d %d",&k,&q);            if(k==0)            {                scanf("%d",&p);                if(p<q+2)//自己考虑里两个端点中间不够一组"wbw"的情况                {                    printf("0\n");continue;                }                            int summ=0;                summ=sum1(p+1)-sum1(q);                if(str[q+1]=='b'&&str[q+2]=='w'&&str[q]=='w')                    summ--;                if(str[p+1]=='b'&&str[p+2]=='w'&&str[p]=='w')                 summ--;                printf("%d\n",summ);            }            else            {                 scanf("\n%c",&c);                 if(str[q+1]!=c)                 if(c=='w')                 {                     if(str[q-1]=='w'&&str[q]=='b')                     add(q,1);                     if(str[q]=='w'&&str[q+2]=='w')                     add(q+1,-1);                     if(str[q+2]=='b'&&str[q+3]=='w')                     add(q+2,1);                 }                 else if(c=='b')                 {                     if(str[q-1]=='w'&&str[q]=='b')                     add(q,-1);                     if(str[q]=='w'&&str[q+2]=='w')                     add(q+1,1);                     if(str[q+2]=='b'&&str[q+3]=='w')                     add(q+2,-1);                 }                 str[q+1]=c;            }        }    }    return 0;}

原创粉丝点击