BZOJ 2243 [SDOI2011]染色:树剖【维护路径上颜色段】
题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=2243
题意:
给定一棵有n个节点的无根树和m个操作,操作有2类:
1、将节点a到节点b路径上所有点都染成颜色c;
2、询问节点a到节点b路径上的颜色段数量(连续相同颜色被认为是同一段),如"112221"由3段组成:"11"、"222"和"1"。
请你写一个程序依次完成这m个操作。
题解:
树剖。
线段树上维护区间颜色段,每个节点:
dat[]:当前区间的颜色段数量
st[]:修改标记
lc[] and rc[]:当前区间的最左端和最右端颜色
lson[] and rson[]:左右儿子编号
线段树部分见NOI 2007 项链工厂。
树剖query中,每次a = par[tp[a]]往上跳之前,先判断getcol(dfsx[tp[a]]) == getcol(dfsx[par[tp[a]]])
如果相等,上下两端合并,sum--。
AC Code:
- #include <iostream>
- #include <stdio.h>
- #include <string.h>
- #include <vector>
- #define MAX_N 1000005
- using namespace std;
- int n,m;
- int tot=;
- int cnt=;
- int c[MAX_N];
- int dat[MAX_N];
- int st[MAX_N];
- int lc[MAX_N];
- int rc[MAX_N];
- int lson[MAX_N];
- int rson[MAX_N];
- int par[MAX_N];
- int dep[MAX_N];
- int siz[MAX_N];
- int tp[MAX_N];
- int son[MAX_N];
- int dfsx[MAX_N];
- int idx[MAX_N];
- vector<int> edge[MAX_N];
- void read()
- {
- scanf("%d%d",&n,&m);
- for(int i=;i<=n;i++)
- {
- scanf("%d",&c[i]);
- }
- int a,b;
- for(int i=;i<n;i++)
- {
- scanf("%d%d",&a,&b);
- edge[a].push_back(b);
- edge[b].push_back(a);
- }
- }
- void push_down(int now)
- {
- if(st[now]!=-)
- {
- dat[lson[now]]=dat[rson[now]]=;
- st[lson[now]]=st[rson[now]]=st[now];
- lc[lson[now]]=rc[lson[now]]=lc[rson[now]]=rc[rson[now]]=st[now];
- st[now]=-;
- }
- }
- void push_up(int now)
- {
- dat[now]=;
- lc[now]=lc[lson[now]];
- rc[now]=rc[rson[now]];
- if(lson[now]) dat[now]+=dat[lson[now]];
- if(rson[now]) dat[now]+=dat[rson[now]];
- if(lson[now] && rson[now] && rc[lson[now]]==lc[rson[now]]) dat[now]--;
- }
- int build(int l,int r)
- {
- int rt=++tot;
- dat[rt]=;
- st[rt]=-;
- lc[rt]=c[idx[l]];
- rc[rt]=c[idx[r]];
- lson[rt]=rson[rt]=;
- if(l<r)
- {
- int mid=(l+r)>>;
- lson[rt]=build(l,mid);
- rson[rt]=build(mid+,r);
- push_up(rt);
- }
- return rt;
- }
- void update(int a,int b,int k,int l,int r,int x)
- {
- if(a<=l && r<=b)
- {
- dat[k]=;
- st[k]=lc[k]=rc[k]=x;
- return;
- }
- if(r<a || b<l) return;
- push_down(k);
- int mid=(l+r)>>;
- update(a,b,lson[k],l,mid,x);
- update(a,b,rson[k],mid+,r,x);
- push_up(k);
- }
- int query(int a,int b,int k,int l,int r)
- {
- if(a<=l && r<=b) return dat[k];
- if(r<a || b<l) return ;
- push_down(k);
- int mid=(l+r)>>;
- int ans=;
- if(a<=mid) ans+=query(a,b,lson[k],l,mid);
- if(b>mid) ans+=query(a,b,rson[k],mid+,r);
- if(a<=mid && b>mid && rc[lson[k]]==lc[rson[k]]) ans--;
- return ans;
- }
- int getcol(int p,int k,int l,int r)
- {
- if(l==r) return lc[k];
- push_down(k);
- int mid=(l+r)>>;
- if(p<=mid) return getcol(p,lson[k],l,mid);
- else return getcol(p,rson[k],mid+,r);
- }
- void dfs1(int now,int p,int d)
- {
- par[now]=p;
- dep[now]=d;
- siz[now]=;
- for(int i=;i<edge[now].size();i++)
- {
- int temp=edge[now][i];
- if(temp!=p)
- {
- dfs1(temp,now,d+);
- siz[now]+=siz[temp];
- }
- }
- }
- void dfs2(int now,int anc)
- {
- tp[now]=anc;
- son[now]=-;
- cnt++;
- idx[cnt]=now;
- dfsx[now]=cnt;
- for(int i=;i<edge[now].size();i++)
- {
- int temp=edge[now][i];
- if((son[now]==- || siz[temp]>siz[son[now]]) && temp!=par[now])
- {
- son[now]=temp;
- }
- }
- if(son[now]!=-) dfs2(son[now],anc);
- for(int i=;i<edge[now].size();i++)
- {
- int temp=edge[now][i];
- if(temp!=par[now] && temp!=son[now]) dfs2(temp,temp);
- }
- }
- void update_chain(int a,int b,int x)
- {
- while(tp[a]!=tp[b])
- {
- if(dep[tp[a]]<dep[tp[b]]) swap(a,b);
- update(dfsx[tp[a]],dfsx[a],,,n,x);
- a=par[tp[a]];
- }
- if(dep[a]<dep[b]) swap(a,b);
- update(dfsx[b],dfsx[a],,,n,x);
- }
- int query_chain(int a,int b)
- {
- int sum=;
- while(tp[a]!=tp[b])
- {
- if(dep[tp[a]]<dep[tp[b]]) swap(a,b);
- sum+=query(dfsx[tp[a]],dfsx[a],,,n);
- if(getcol(dfsx[tp[a]],,,n)==getcol(dfsx[par[tp[a]]],,,n)) sum--;
- a=par[tp[a]];
- }
- if(dep[a]<dep[b]) swap(a,b);
- sum+=query(dfsx[b],dfsx[a],,,n);
- return sum;
- }
- void work()
- {
- dfs1(,-,);
- dfs2(,);
- build(,n);
- char s[];
- int a,b,c;
- while(m--)
- {
- scanf("%s",s);
- if(s[]=='Q')
- {
- scanf("%d%d",&a,&b);
- printf("%d\n",query_chain(a,b));
- }
- else
- {
- scanf("%d%d%d",&a,&b,&c);
- update_chain(a,b,c);
- }
- }
- }
- int main()
- {
- read();
- work();
- }
BZOJ 2243 [SDOI2011]染色:树剖【维护路径上颜色段】的更多相关文章
- BZOJ 2243: [SDOI2011]染色 (树剖+线段树)
树链剖分后两个区间合并的时候就判一下相交颜色是否相同来算颜色段数就行了. CODE #include <vector> #include <queue> #include &l ...
- BZOJ 2243: [SDOI2011]染色 [树链剖分]
2243: [SDOI2011]染色 Time Limit: 20 Sec Memory Limit: 512 MBSubmit: 6651 Solved: 2432[Submit][Status ...
- Bzoj 2243: [SDOI2011]染色 树链剖分,LCT,动态树
2243: [SDOI2011]染色 Time Limit: 20 Sec Memory Limit: 512 MBSubmit: 5020 Solved: 1872[Submit][Status ...
- BZOJ 2243: [SDOI2011]染色 树链剖分 倍增lca 线段树
2243: [SDOI2011]染色 Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://www.lydsy.com/JudgeOnline/pr ...
- BZOJ 2243: [SDOI2011]染色 树链剖分+线段树区间合并
2243: [SDOI2011]染色 Description 给定一棵有n个节点的无根树和m个操作,操作有2类: 1.将节点a到节点b路径上所有点都染成颜色c: 2.询问节点a到节点b路径上的颜色段数 ...
- BZOJ 2243 [SDOI2011]染色 (树链剖分)(线段树区间修改)
[SDOI2011]染色 Time Limit: 20 Sec Memory Limit: 512 MBSubmit: 6870 Solved: 2546[Submit][Status][Disc ...
- [bzoj 2243]: [SDOI2011]染色 [树链剖分][线段树]
Description 给定一棵有n个节点的无根树和m个操作,操作有2类: 1.将节点a到节点b路径上所有点都染成颜色c: 2.询问节点a到节点b路径上的颜色段数量(连续相同颜色被认为是同一段),如“ ...
- BZOJ 2243: [SDOI2011]染色 (树链剖分+线段树合并)
题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=2243 树链剖分的点剖分+线段树.漏了一个小地方,调了一下午...... 还是要细心啊! 结 ...
- bzoj 2243 [SDOI2011]染色(树链剖分,线段树)
2243: [SDOI2011]染色 Time Limit: 20 Sec Memory Limit: 512 MBSubmit: 4637 Solved: 1726[Submit][Status ...
随机推荐
- HTML5 2D平台游戏开发#9蓄力技
在很多动作游戏中,玩家操控的角色可以施放出比普通攻击更强力的蓄力技,一般操作为按住攻击键一段时间然后松开,具体效果像下面这张图: 要实现这个操作首先要记录下按键被按住的时间,初始是0: this.sa ...
- 一个方便的图片载入框架——ImageViewEx
我的博客:http://mrfufufu.github.io/ 一.前言 近期在整理项目中的一些代码,以备即将开展的新项目中使用,刚刚整理到一个图片载入的 lib.用起来很的简单,和 picasso ...
- UIview层次管理
将一个UIView显示在最前面只需要调用其父视图的 bringSubviewToFront()方法. 将一个UIView层推送到背后只需要调用其父视图的 sendSubviewToBack()方法.
- CentOS6.4下编译安装Apache2.4+PHP5.6
安装Apache2.4: 首先从 http://httpd.apache.org/download.cgi#apache24下载apache源码包httpd-2.4.4.tar.gz从 http: ...
- 【文献阅读】Perceptual Generative Adversarial Networks for Small Object Detection –CVPR-2017
Perceptual Generative Adversarial Networks for Small Object Detection 2017CVPR 新鲜出炉的paper,这是针对small ...
- 三种光照模型的shader实现
1.Lambert模型,公式为I=Kd*Il(N*L): Shader "Custom/Lambert_A" { Properties { _Diffuse(,,,) } SubS ...
- PHP fsockopen模拟POST/GET方法
原文链接:http://www.nowamagic.net/academy/detail/12220214 fsockopen 除了前面小节的模拟生成 HTTP 连接之外,还能实现很多功能,比如模拟 ...
- java.lang.IllegalStateException: ImageView no longer exists. You should not use this PhotoViewAttacher any more.
java.lang.IllegalStateException: ImageView no longer exists. You should not use this PhotoViewAttach ...
- SDOI2012 Round1 day2 集合(set)解题报告
//=====================以上为官方题解==============// 数据略水,暴力枚举50. 把边按照升序排一遍,在询问,水过. #include<cstdio> ...
- 【BZOJ3791】作业 DP
[BZOJ3791]作业 Description 众所周知,白神是具有神奇的能力的.比如说,他对数学作业说一声“数”,数学作业就会出于畏惧而自己完成:对语文作业说一声“语”,语文作业就会出于畏惧而自己 ...