Panda

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
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
 
/*runtime error
求解释啊....................
思路:每个节点保存,最左边两个数和右边两个数

*/
#include<iostream>
#include<cstdio>
using namespace std;
#define MAX 500000
typedef 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 ;
		else
			t[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;
		else
			t[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 );
	else
		update(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 ;
				else
					a[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 ;
				else
					y = 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;
		else
			tree[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;
		else
			tree[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;
}

### Panda3D 游戏引擎简介 Panda3D 是一款功能强大的开源游戏引擎,广泛应用于教育、研究以及商业项目中。它支持多种编程语言接口,其中最常用的是 Python 和 C++ 接口[^1]。该引擎提供了丰富的工具集,用于创建 3D 图形应用程序和游戏。 #### 下载与安装 用户可以从官方站点下载最新版本的 Panda3D 引擎。官方网站地址为 https://www.panda3d.org/ 。在网站上提供有不同平台(Windows, macOS, Linux)下的二进制包以及源码编译选项[^2]。对于初学者来说,推荐直接使用预构建好的二进制文件以便快速启动开发环境。 #### 基本使用指南 为了更好地理解和运用 Panda3D ,以下是几个关键概念及其操作方法: - **场景图管理** Panda3D 的核心之一就是其高效的场景图管理系统 NodePath。开发者可以通过这个类轻松地加载模型、设置变换矩阵并控制对象可见性等属性[^3]。 ```python from direct.showbase.ShowBase import ShowBase class MyApp(ShowBase): def __init__(self): super().__init__() # 加载一个简单的立方体模型 self.cube = loader.loadModel("models/cube") self.cube.reparentTo(render) self.cube.setScale(0.5, 0.5, 0.5) app = MyApp() app.run() ``` - **事件处理机制** 游戏交互离不开良好的输入响应设计。Panda3D 提供了一套灵活易用的事件框架允许绑定键盘鼠标动作到特定函数调用之上[^4]。 - **物理模拟插件集成** 如果需要实现更真实的碰撞检测或者刚体动力学效果,则可通过 Bullet Physics Library 来增强原有功能[^5]。 #### 关于 libtag 库的应用价值 虽然原生 panda3d 并未内置名为 `libtag` 的组件,但从先前描述推测可能是第三方扩展或者是自定义模块,在实际项目里确实能够借助类似的辅助手段提升性能表现比如优化资源分配策略降低潜在风险从而提高稳定性[^6]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值