A14109 | Yuezheng Ling and Dynamic Tree
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Yuezheng Ling gives Luo Tianyi a tree which has $n$ nodes, rooted at $1$ .
Luo Tianyi will tell you that the parent of the $i$ -th node is $a_i$ ( $1 \leq a_i<i$ for $2 \le i \le n$ ), and she will ask you to perform $q$ queries of $2$ types:
1. She'll give you three integers $l$ , $r$ and $x$ ( $2 \le l \le r \le n$ , $1 \le x \le 10^5$ ). You need to replace $a_i$ with $\max(a_i-x,1)$ for all $i$ with $l \leq i \leq r$ .
2. She'll give you two integers $u$ , $v$ ( $1 \le u, v \le n$ ). You need to find the [LCA](https://en.wikipedia.org/wiki/Lowest_common_ancestor) of nodes $u$ and $v$ (their lowest common ancestor).
Luo Tianyi will tell you that the parent of the $i$ -th node is $a_i$ ( $1 \leq a_i<i$ for $2 \le i \le n$ ), and she will ask you to perform $q$ queries of $2$ types:
1. She'll give you three integers $l$ , $r$ and $x$ ( $2 \le l \le r \le n$ , $1 \le x \le 10^5$ ). You need to replace $a_i$ with $\max(a_i-x,1)$ for all $i$ with $l \leq i \leq r$ .
2. She'll give you two integers $u$ , $v$ ( $1 \le u, v \le n$ ). You need to find the [LCA](https://en.wikipedia.org/wiki/Lowest_common_ancestor) of nodes $u$ and $v$ (their lowest common ancestor).
输入格式
The first line contains two integers $n$ and $q$ ( $2\leq n,q \leq 10^5$ ) — the number of nodes and the number of queries, respectively.
The second line contains $n-1$ integers $a_2, a_3,\dots, a_n$ ( $1 \le a_i < i$ ), where $a_i$ is the parent of the node $i$ .
Next $q$ lines contain queries. For each query, the first integer of each line is $t$ ( $t = 1$ or $2$ ) — the type of the query.
If $t = 1$ , this represents the query of the first type. Then, three integers will follow: $l$ , $r$ , $x$ ( $2 \le l \le r \le n$ , $1 \le x \le 10^5$ ), meaning that you have to replace $a_i$ with $\max(a_i-x,1)$ for all $i$ with $l \leq i \leq r$ .
If $t = 2$ , this represents the query of the second type. Then, two integers will follow: $u$ and $v$ ( $1 \le u, v \le n$ ), and you have to find the LCA of $u$ and $v$ .
It's guaranteed that there is at least one query of the second type.
The second line contains $n-1$ integers $a_2, a_3,\dots, a_n$ ( $1 \le a_i < i$ ), where $a_i$ is the parent of the node $i$ .
Next $q$ lines contain queries. For each query, the first integer of each line is $t$ ( $t = 1$ or $2$ ) — the type of the query.
If $t = 1$ , this represents the query of the first type. Then, three integers will follow: $l$ , $r$ , $x$ ( $2 \le l \le r \le n$ , $1 \le x \le 10^5$ ), meaning that you have to replace $a_i$ with $\max(a_i-x,1)$ for all $i$ with $l \leq i \leq r$ .
If $t = 2$ , this represents the query of the second type. Then, two integers will follow: $u$ and $v$ ( $1 \le u, v \le n$ ), and you have to find the LCA of $u$ and $v$ .
It's guaranteed that there is at least one query of the second type.
输出格式
For each query of the second type output answer on a new line.
输入输出样例
输入 #1
6 4 1 2 3 3 4 2 3 4 1 2 3 1 2 5 6 2 2 3
输出 #1
3 3 1
The tree in example is shown below.
After the query of the first type, the tree changes and is looking as shown below.

After the query of the first type, the tree changes and is looking as shown below.

C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted