Count Color 线段树成段更新 hoj &poj

136 篇文章 0 订阅
48 篇文章 0 订阅

/*注意在查询的时候要将标记下方。*/
#include <stdio.h>
#include <cstring>
#define maxn 100001
int c[maxn<<2];
bool color[31];
int lazy[maxn<<2];
void swap(int &a,int &b)
{
    int temp;
    temp=a;
    a=b;
    b=temp;
}
void build(int l,int r,int rt)
{
    if(l==r)
    {
        c[rt]=1;
        return ;
    }
    int mid=(l+r)>>1;
    build(l,mid,rt<<1);
    build(mid+1,r,rt<<1|1);
    c[rt]=1;
}
void pushdown(int rt)
{
    if(lazy[rt])
    {
        lazy[rt<<1]=lazy[rt];
        lazy[rt<<1|1]=lazy[rt];
        c[rt<<1]=lazy[rt];
        c[rt<<1|1]=lazy[rt];
        lazy[rt]=0;
    }
}
void update(int a,int b,int p,int l,int r,int rt)
{
    if(c[rt]==p) return ;
    if(a<=l&&b>=r)
    {
        c[rt]=p;
        lazy[rt]=p;
        return ;
    }
    pushdown(rt);
    int mid=(l+r)>>1;
    if(a<=mid) update(a,b,p,l,mid,rt<<1);
    if(b>mid) update(a,b,p,mid+1,r,rt<<1|1);
    c[rt]=0;
}
void query(int a,int b,int l,int r,int rt)
{   
    if(a<=l&&b>=r&&c[rt]>0)
    {
        color[c[rt]]=true;
        return ;
    }
    pushdown(rt);
    int mid=(l+r)>>1;
    if(a<=mid) query(a,b,l,mid,rt<<1);
    if(b>mid) query(a,b,mid+1,r,rt<<1|1);
}
int main()
{
    char op;
    int n,t,m;
    int p,q,f;
    while(scanf("%d%d%d",&n,&t,&m)==3)
    {
        memset(lazy,0,sizeof(lazy));
        build(1,n,1);
        while(m--)
        {
            scanf(" %c",&op);
            if(op=='C')
            {
                scanf("%d%d%d",&p,&q,&f);
                if(p>q) swap(p,q);
                update(p,q,f,1,n,1);
            }
            else if(op=='P')
            {
                memset(color,false,sizeof(color));
                scanf("%d%d",&p,&q);
                if(p>q) swap(p,q);
                query(p,q,1,n,1);
                int count=0;
                for(int i=1; i<=30; i++)
                    if(color[i]) count++;
                printf("%d\n",count);
            }
        }
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值