BZOJ 2243 SDOI 2011 染色 树链剖分

75 篇文章 1 订阅
13 篇文章 0 订阅

线段树维护染色线段要注意左右关系。

在提重链时左或右要注意颠倒过来,如果左或右没有特别去维护的话。

#include <cstdio>
#include <algorithm>
#define FOR(i,j,k) for(i=j;i<=k;i++)
#define rep(i,j,k) for(i=j;i<k;i++)
using namespace std;
typedef long long ll;
ll read() {
	ll s=0,f=1;char ch=getchar();
	for(;ch<'0'||ch>'9';ch=getchar())if(ch=='-')f=-1;
	for(;'0'<=ch&&ch<='9';ch=getchar())s=s*10+ch-'0';
	return s*f;
}

const int N = 100005;

struct Line {
	int s, lc, rc;
	Line operator & (const Line &b) const {
		return (Line) { s + b.s - (rc == b.lc), lc, b.rc }; 
	}
} nil;

Line val[N*4], lazy[N*4];

int cnt = 0, tot = 0, n, m;
int head[N], fa[N], son[N], dep[N], top[N], pos[N], sz[N], next[N*2], to[N*2], c[N], col[N];

void add(int u, int v) {
	next[++cnt] = head[u]; head[u] = cnt; to[cnt] = v;
	next[++cnt] = head[v]; head[v] = cnt; to[cnt] = u;
}

void dfs1(int x) {
	sz[x] = 1; son[x] = 0;
	for (int i = head[x]; i; i = next[i])
		if (to[i] != fa[x]) {
			fa[to[i]] = x; dep[to[i]] = dep[x] + 1;
			dfs1(to[i]);
			if (sz[to[i]] > sz[son[x]]) son[x] = to[i];
			sz[x] += sz[to[i]];
		}
}

void dfs2(int x, int t) {
	col[pos[x] = ++tot] = c[x]; top[x] = t;
	if (son[x] != 0) dfs2(son[x], t);
	for (int i = head[x]; i; i = next[i])
		if (to[i] != son[x] && to[i] != fa[x])
			dfs2(to[i], to[i]);
}

Line build(int t, int l, int r) {
	if (l == r) return val[t] = (Line) { 1, col[l], col[r] };
	int mid = l + r >> 1; 
	return val[t] = build(t * 2, l, mid) & build(t * 2 + 1, mid + 1, r);
}

void pushdown(int t) {
	if (lazy[t].s) {
		val[t * 2] = val[t * 2 + 1] = 
			lazy[t * 2] = lazy[t * 2 + 1] = lazy[t];
		lazy[t] = nil;
	}
}

void modify(int t, int l, int r, int ql, int qr, const Line &x) {
	if (l == ql && r == qr) {
		val[t] = lazy[t] = x;
		return;
	}
	pushdown(t);
	int mid = l + r >> 1;
	if (qr <= mid) modify(t * 2, l, mid, ql, qr, x);
	else if (ql > mid) modify(t * 2 + 1, mid + 1, r, ql, qr, x);
	else modify(t * 2, l, mid, ql, mid, x), modify(t * 2 + 1, mid + 1, r, mid + 1, qr, x);
	val[t] = val[t * 2] & val[t * 2 + 1];
}

Line query(int t, int l, int r, int ql, int qr) {
	if (l == ql && r == qr) return val[t];
	pushdown(t);
	int mid = l + r >> 1;
	if (qr <= mid) return query(t * 2, l, mid, ql, qr);
	else if (ql > mid) return query(t * 2 + 1, mid + 1, r, ql, qr);
	else return query(t * 2, l, mid, ql, mid) & query(t * 2 + 1, mid + 1, r, mid + 1, qr);
}

int taskQ(int x, int y) {
	Line lx = nil, ly = nil;
	int fx = top[x], fy = top[y];
	while (fx != fy) {
		if (dep[fx] < dep[fy]) swap(fx, fy), swap(x, y), swap(lx, ly);
		lx = query(1, 1, n, pos[fx], pos[x]) & lx;
		x = fa[fx], fx = top[x];
	}
	if (dep[x] < dep[y]) swap(x, y), swap(lx, ly);
	lx = query(1, 1, n, pos[y], pos[x]) & lx;
	return lx.s + ly.s - (lx.lc == ly.lc);
}

void taskC(int x, int y, int colour) {
	Line l = (Line) { 1, colour, colour };
	int fx = top[x], fy = top[y];
	while (fx != fy) {
		if (dep[fx] < dep[fy]) swap(fx, fy), swap(x, y);
		modify(1, 1, n, pos[fx], pos[x], l);
		x = fa[fx], fx = top[x];
	}
	if (dep[x] > dep[y]) swap(x, y);
	modify(1, 1, n, pos[x], pos[y], l);
}

int main() {
	int i, x, y, z; char ch[5];
	nil = (Line) { 0, 0, 0};
	n = read(), m = read();
	FOR(i,1,n) c[i]=read()+1;
	rep(i,1,n) add(read(),read());
	dfs1(1); dfs2(1, 1); build(1, 1, n);
	FOR(i,1,m) {
		scanf("%s", ch);
		if (ch[0] == 'Q') {
			x = read(), y = read();
			printf("%d\n", taskQ(x, y));
		} else {
			x = read(), y = read(), z = read() + 1;
			taskC(x, y, z);
		}
	}
	return 0;
}


Description

给定一棵有n个节点的无根树和m个操作,操作有2类:

1、将节点a到节点b路径上所有点都染成颜色c

2、询问节点a到节点b路径上的颜色段数量(连续相同颜色被认为是同一段),如“1122213段组成:“11、“222和“1

请你写一个程序依次完成这m个操作。

Input

第一行包含2个整数nm,分别表示节点数和操作数;

第二行包含n个正整数表示n个节点的初始颜色

下面 行每行包含两个整数xy,表示xy之间有一条无向边。

下面 行每行描述一个操作:

“C a b c”表示这是一个染色操作,把节点a到节点b路径上所有点(包括ab)都染成颜色c

“Q a b”表示这是一个询问操作,询问节点a到节点b(包括ab)路径上的颜色段数量。

Output

对于每个询问操作,输出一行答案。

Sample Input

6 5
2 2 1 2 1 1
1 2
1 3
2 4
2 5
2 6
Q 3 5
C 2 1 1
Q 3 5
C 5 1 2
Q 3 5

Sample Output

3
1
2

HINT

数N<=10^5,操作数M<=10^5,所有的颜色C为整数且在[0, 10^9]之间。

Source


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值