CF1413F. Roads and Ramen(树的直径,线段树)

CF1413F. Roads and Ramen

Solution

感觉这个套路也见过许多次了?大概这种奇奇怪怪的树上最长路径的题都得往直径靠一靠。

大概有个结论是:存在一个最优路径使得其起始点和直径起始点有交。

然后我们只需要求出一个直径的起始点 A , B A,B A,B,分别维护以 A , B A,B A,B为根的树到其他点的边权异或和以及最长路径,上线段树就行了。

时间复杂度 O ( n + q log ⁡ n ) O(n+q\log n) O(n+qlogn)

Code

#include <bits/stdc++.h>

using namespace std;

template<typename T> inline bool upmin(T &x, T y) { return y < x ? x = y, 1 : 0; }
template<typename T> inline bool upmax(T &x, T y) { return x < y ? x = y, 1 : 0; }

#define MP(A,B) make_pair(A,B)
#define PB(A) push_back(A)
#define SIZE(A) ((int)A.size())
#define LEN(A) ((int)A.length())
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define fi first
#define se second

typedef long long ll;
typedef unsigned long long ull;
typedef long double lod;
typedef pair<int, int> PR;
typedef vector<int> VI; 

const lod eps = 1e-9;
const lod pi = acos(-1);
const int oo = 1 << 30;
const ll loo = 1ll << 60;
const int mods = 1e9 + 7;
const int inv2 = (mods + 1) >> 1;
const int MAXN = 2005;
const int INF = 0x3f3f3f3f; //1061109567
/*--------------------------------------------------------------------*/

namespace FastIO{
	constexpr int SIZE = (1 << 21) + 1;
	int num = 0, f;
	char ibuf[SIZE], obuf[SIZE], que[65], *iS, *iT, *oS = obuf, *oT = obuf + SIZE - 1, c;
	#define gc() (iS == iT ? (iT = ((iS = ibuf) + fread(ibuf, 1, SIZE, stdin)), (iS == iT ? EOF : *iS ++)) : *iS ++)
	inline void flush() {
		fwrite(obuf, 1, oS - obuf, stdout);
		oS = obuf;
	}
	inline void putc(char c) {
		*oS ++ = c;
		if (oS == oT) flush();
	}
	inline void getc(char &c) {
		for (c = gc(); !isalpha(c) && c != EOF; c = gc());
	}
	inline void reads(char *st) {
		char c;
		int n = 0;
		getc(st[++ n]);
		for (c = gc(); isalpha(c) ; c = gc()) st[++ n] = c;
		st[n + 1] = '\0';
	}
	template<class I>
	inline void read(I &x) {
		for (f = 1, c = gc(); c < '0' || c > '9' ; c = gc()) if (c == '-') f = -1;
		for (x = 0; c >= '0' && c <= '9' ; c = gc()) x = (x << 3) + (x << 1) + (c & 15);
		x *= f;
	}
	template<class I>
	inline void print(I x) {
		if (x < 0) putc('-'), x = -x;
		if (!x) putc('0');
		while (x) que[++ num] = x % 10 + 48, x /= 10;
		while (num) putc(que[num --]);
	}
	struct Flusher_{~Flusher_(){flush();}} io_Flusher_;
}
using FastIO :: read;
using FastIO :: putc;
using FastIO :: reads;
using FastIO :: print;


PR E[MAXN];
vector<PR> e[MAXN];
int id[MAXN], dfnA[MAXN], dfnB[MAXN], dep[MAXN], depA[MAXN], depB[MAXN], fnsA[MAXN], fnsB[MAXN], col[MAXN], MX, ID, DFN = 0, A, B;

void dfsA(int x, int father) {
	id[dfnA[x] = ++ DFN] = x;
	if (dep[x] > MX) MX = dep[x], ID = x;
	for (auto v : e[x]) {
		if (v.fi == father) continue;
		col[v.fi] = col[x] ^ v.se, dep[v.fi] = dep[x] + 1, dfsA(v.fi, x);
	}
	fnsA[x] = DFN;
}
void dfsB(int x, int father) {
	id[dfnB[x] = ++ DFN] = x;
	if (dep[x] > MX) MX = dep[x], ID = x;
	for (auto v : e[x]) {
		if (v.fi == father) continue;
		col[v.fi] = col[x] ^ v.se, dep[v.fi] = dep[x] + 1, dfsB(v.fi, x);
	}
	fnsB[x] = DFN;
}


struct Segment_Tree {
	int tag[MAXN << 2], s[MAXN << 2][2];
	void down(int x) {
		if (tag[x]) {
			tag[x << 1] ^= 1, swap(s[x << 1][0], s[x << 1][1]);
			tag[x << 1 | 1] ^= 1, swap(s[x << 1 | 1][0], s[x << 1 | 1][1]);
			tag[x] = 0;
		}
	}
	void up(int x) {
		s[x][0] = max(s[x << 1][0], s[x << 1 | 1][0]);
		s[x][1] = max(s[x << 1][1], s[x << 1 | 1][1]);
	}
	void build(int x, int l, int r) {
		if (l == r) {
			s[x][col[id[l]]] = dep[id[l]];
			s[x][col[id[l]] ^ 1] = -INF;
			return;
		}
		int mid = (l + r) >> 1;
		build(x << 1, l, mid);
		build(x << 1 | 1, mid + 1, r);
		up(x);
	}
	void update(int x, int l, int r, int L, int R) {
		if (l >= L && r <= R) {
			tag[x] ^= 1;
			swap(s[x][0], s[x][1]);
			return;
		}
		down(x);
		int mid = (l + r) >> 1;
		if (R <= mid) update(x << 1, l, mid, L, R);
		else if (L > mid) update(x << 1 | 1, mid + 1, r, L, R);
		else update(x << 1, l, mid, L, mid), update(x << 1 | 1, mid + 1, r, mid + 1, R);
		up(x);
	}
	void print(int x, int l, int r) {
		if (l == r) { cout << id[l] << ":" << s[x][0] << endl; return; }
		int mid = (l + r) >> 1;
		down(x);
		print(x << 1, l, mid);
		print(x << 1 | 1, mid + 1, r);
	}
} TA, TB;
signed main() {
#ifndef ONLINE_JUDGE
	freopen("a.in", "r", stdin);
#endif
	int n;
	read(n);
	for (int i = 1, u, v, c; i < n ; ++ i) {
		read(u), read(v), read(c);
		e[u].PB(MP(v, c));
		e[v].PB(MP(u, c));
		E[i] = MP(u, v);
	}
	DFN = MX = ID = col[1] = dep[1] = 0, dfsA(1, 0), A = ID;
	DFN = MX = ID = col[A] = dep[A] = 0, dfsA(A, 0), B = ID;
	TA.build(1, 1, n);
	for (int i = 1; i <= n ; ++ i) depA[i] = dep[i];
	DFN = MX = ID = col[B] = dep[B] = 0, dfsB(B, 0);
	TB.build(1, 1, n);
	for (int i = 1; i <= n ; ++ i) depB[i] = dep[i];

	int Case;
	read(Case);
	while (Case --) {
		int x;
		read(x);
		int u = E[x].fi, v = E[x].se;
		if (depA[u] < depA[v]) swap(u, v);
		TA.update(1, 1, n, dfnA[u], fnsA[u]);
		if (depB[u] < depB[v]) swap(u, v);
		TB.update(1, 1, n, dfnB[u], fnsB[u]);
		print(max(TA.s[1][0], TB.s[1][0])), putc('\n');
	}
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值