首页 > 其他分享 >CF570D Tree Requests

CF570D Tree Requests

时间:2023-11-15 20:48:30浏览次数:46  
标签:fir cnt CF570D int Tree son Requests include array

题意

给定一棵根为 \(1\) 的有根树,以及字符串 \(S\)。

  • \(x, h\) 求 \(x\) 的子树内,深度为 \(h\) 的节点的字符能否重排为一个回文串。

Sol

不难发现,回文串显然至多有一个字符出现奇数个。

所以我们对于每种字符随机附权值,维护前缀异或值。

查询时枚举 \(26\) 种为奇数的情况,这是显然平凡的。

Code

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <array>
#include <random>
#include <vector>
#include <ctime>
#include <cassert>
#define int long long
using namespace std;
#ifdef ONLINE_JUDGE

#define getchar() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 21, stdin), p1 == p2) ? EOF : *p1++)
char buf[1 << 23], *p1 = buf, *p2 = buf, ubuf[1 << 23], *u = ubuf;

#endif
int read() {
	int p = 0, flg = 1;
	char c = getchar();
	while (c < '0' || c > '9') {
		if (c == '-') flg = -1;
		c = getchar();
	}
	while (c >= '0' && c <= '9') {
		p = p * 10 + c - '0';
		c = getchar();
	}
	return p * flg;
}
string read_() {
	string ans;
	char c = getchar();
	while (c < 'a' || c > 'z')
		c = getchar();
	while (c >= 'a' && c <= 'z') {
		ans += c;
		c = getchar();
	}
	return ans;
}
void write(int x) {
	if (x < 0) {
		x = -x;
		putchar('-');
	}
	if (x > 9) {
		write(x / 10);
	}
	putchar(x % 10 + '0');
}
const int N = 5e5 + 5, M = 1e6 + 5;

namespace G {

array <int, N> fir;
array <int, M> nex, to;
int cnt;
void add(int x, int y) {
	cnt++;
	nex[cnt] = fir[x];
	to[cnt] = y;
	fir[x] = cnt;
}

}


string s;
array <int, 28> cur;

array <vector <int>, N> isl;

namespace Hpt {

using G::fir; using G::nex; using G::to;

array <int, N> siz, dep, fa, son;

void dfs1(int x) {
	siz[x] = 1;
	for (int i = fir[x]; i; i = nex[i]) {
		if (to[i] == fa[x]) continue;
		dep[to[i]] = dep[x] + 1;
		fa[to[i]] = x;
		dfs1(to[i]);
		siz[x] += siz[to[i]];
		if (siz[to[i]] > siz[son[x]]) son[x] = to[i];
	}
}

array <int, N> dfn, top, idx;
int cnt;

void dfs2(int x, int Mgn) {
	cnt++;
	dfn[x] = cnt;
	idx[cnt] = x;
	top[x] = Mgn;
	isl[dep[x]].push_back(dfn[x]);
	if (son[x]) dfs2(son[x], Mgn);
	for (int i = fir[x]; i; i = nex[i]) {
		if (to[i] == fa[x] || to[i] == son[x]) continue;
		dfs2(to[i], to[i]);
	}
}

}
namespace Bit {

array <int, N> edge;

int lowbit(int x) {
	return x & -x;
}

void modify(int x, int y, int n) {
	while (x <= n) {
		edge[x] ^= y;
		x += lowbit(x);
	}
	return;
}
int query(int x) {
	int ans = 0;
	while (x) {
		ans ^= edge[x];
		x -= lowbit(x);
	}
	return ans;
}

}
array <int, N> prl;

signed main() {
	int n = read(), q = read();
	for (int i = 2; i <= n; i++) {
		int x = read();
		G::add(i, x), G::add(x, i);
	}
	s = " " + read_();
	mt19937_64 rnd(time(0));
	for (int i = 1; i <= 26; i++)
		cur[i] = rnd() % 147744151;
	Hpt::dfs1(1), Hpt::dfs2(1, 0);
	int cnt = 0;
	for (int i = 0; i <= n; i++) {
		for (auto x : isl[i]) {
			cnt++;
			Bit::modify(cnt, cur[s[Hpt::idx[x]] - 'a' + 1], n);
		}
		prl[i] += prl[i - 1] + isl[i].size();
	}
	while (q--) {
		int x = read(), y = read() - 1;
		int l = Hpt::dfn[x], r = Hpt::dfn[x] + Hpt::siz[x] - 1;
		if (!isl[y].size()) {
			puts("Yes");
			continue;
		}
		int st = lower_bound(isl[y].begin(), isl[y].end(), l) - isl[y].begin() + 1,
			ed = 0;
		auto it = upper_bound(isl[y].begin(), isl[y].end(), r);
		ed = it - isl[y].begin();
		st += prl[y - 1], ed += prl[y - 1];
		int tp = Bit::query(ed) ^ Bit::query(st - 1);
		/* for (auto k : isl[y]) */
			/* write(k), putchar(32); */
		/* puts(""); */
		/* write(st), putchar(32); */
		/* write(ed), puts(""); */
		bool flg = 0;
		for (int i = 0; i <= 26; i++) {
			if (tp ^ cur[i]) continue;
			flg = 1;
		}
		if (flg) puts("Yes");
		else puts("No");
	}
	return 0;
}

标签:fir,cnt,CF570D,int,Tree,son,Requests,include,array
From: https://www.cnblogs.com/cxqghzj/p/17834709.html

相关文章

  • python tkinter treeview 仿 excel表格
    代码:fromtkinterimportttkfromtkinterimport*root=Tk()#初始框的声明columns=("姓名","IP地址")treeview=ttk.Treeview(root,height=18,show="headings",columns=columns)#表格treeview.column("姓名",width=100,a......
  • 决策树(Decision Tree)
    决策树是一种基于树结构的分类和回归模型,它通过对数据进行逐步的分解,从根节点开始,根据不同的特征进行分割,最终到达叶节点,叶节点对应一个预测结果。以下是决策树的基本概念和构建过程的详细解释:决策树的基本概念:节点(Node):根节点(RootNode):树的起始节点,包含整个数据集。内部节......
  • 解决Python requests库不支持发送可迭代对象的问题
    在加班的路上,bug是那永远的陪伴。对于程序员来说,bug就像黑暗中的萤火虫,虽然微弱却永远指引着前进的方向。今天,我们要探讨的是Pythonrequests库在处理可迭代对象时遇到的问题,这是一道让许多开发者头痛的难题。本文将详细介绍一种临时解决方案,希望能帮助大家解决问题,让编程之路更加......
  • TreeSet
      ......
  • AT_tdpc_tree 木
    题目描述:给定一棵大小为\(n\)的树,用另外\(n\)个点加边构造出这棵树,要求构造时所被边连到的点联通,求有多少连边顺序。数据范围:\(1\leqn\leq1000\)。思路:首先我们发现,因为题目要求连边后一定是一个连通块,所以考虑以哪一个点作为起点,然后向下连边。所以我们得到一个初......
  • requests.post 数据字段编码问题的方法
    今夜,我要在代码的海洋中遨游,捕捉那只顽皮的bug。作为一名程序员,不断解决问题是日常的工作。而今天我要解决的是requests.post数据字段编码问题。在编程中,数据的编码问题常常让人头疼,它可能会导致程序无法正常运行。那么,如何解决这个问题呢?接下来,我就为大家详细介绍一下。相信通过......
  • requests 2.13.0 版本的 https 连接慢漏提示
    解决方案requests2.13.0版本的https连接慢漏问题问题背景:在使用requests2.13.0版本时,发现存在一个缓慢的泄漏问题。这个问题只在使用https连接时出现。经过调查,发现这个问题与pyOpenSSL的使用有关。在使用pyOpenSSL与requests2.13.0版本时,存在一个泄漏问题,而在移除pyOpenSSL......
  • 解决requests库的urllib3版本冲突问题
    每个加班的夜晚,都是我和bug的较量。当我坐在电脑前,灯光昏暗,空气凝固,只有键盘敲击的声音回荡在空旷的办公室中。我渐渐地陷入了与无数个请求的斗争中。这些请求来自各种各样的客户端,充满了各种各样的需求。每个请求都是一个挑战,需要我用技术和创造力去解决。这个过程充满了曲折和挫......
  • requests 库更新:兼容最新 urllib3 版本及相关库
    #升级支持requests库更新:兼容最新urllib3版本及相关库            解决方案        对于这个问题,我们可以通过修改setup.py文件来解决。在setup.py文件中,我们将urllib3的版本范围从1.21.1到1.26改为1.21.1到最新版本。这是因为......
  • requests库验证错误解决方法
    用户在使用requests库进行http请求时,遇到了一个AuthenticationRequired(身份验证必须)的错误。但是,当使用urllib.request.urlopen进行相同的操作时,却能够成功。同时,用户提供了自己的系统信息,包括Python版本、操作系统等。        #解决方案       ......