A14860 | Permutation and Queries
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a permutation $p$ of $n$ elements. A permutation of $n$ elements is an array of length $n$ containing each integer from $1$ to $n$ exactly once. For example, $[1, 2, 3]$ and $[4, 3, 5, 1, 2]$ are permutations, but $[1, 2, 4]$ and $[4, 3, 2, 1, 2]$ are not permutations. You should perform $q$ queries.
There are two types of queries:
- $1$ $x$ $y$ — swap $p_x$ and $p_y$ .
- $2$ $i$ $k$ — print the number that $i$ will become if we assign $i = p_i$ $k$ times.
There are two types of queries:
- $1$ $x$ $y$ — swap $p_x$ and $p_y$ .
- $2$ $i$ $k$ — print the number that $i$ will become if we assign $i = p_i$ $k$ times.
输入格式
The first line contains two integers $n$ and $q$ ( $1 \le n, q \le 10^5$ ).
The second line contains $n$ integers $p_1, p_2, \dots, p_n$ .
Each of the next $q$ lines contains three integers. The first integer is $t$ ( $1 \le t \le 2$ ) — type of query. If $t = 1$ , then the next two integers are $x$ and $y$ ( $1 \le x, y \le n$ ; $x \ne y$ ) — first-type query. If $t = 2$ , then the next two integers are $i$ and $k$ ( $1 \le i, k \le n$ ) — second-type query.
It is guaranteed that there is at least one second-type query.
The second line contains $n$ integers $p_1, p_2, \dots, p_n$ .
Each of the next $q$ lines contains three integers. The first integer is $t$ ( $1 \le t \le 2$ ) — type of query. If $t = 1$ , then the next two integers are $x$ and $y$ ( $1 \le x, y \le n$ ; $x \ne y$ ) — first-type query. If $t = 2$ , then the next two integers are $i$ and $k$ ( $1 \le i, k \le n$ ) — second-type query.
It is guaranteed that there is at least one second-type query.
输出格式
For every second-type query, print one integer in a new line — answer to this query.
输入输出样例
输入 #1
5 4 5 3 4 2 1 2 3 1 2 1 2 1 1 3 2 1 2
输出 #1
4 1 2
输入 #2
5 9 2 3 5 1 4 2 3 5 2 5 5 2 5 1 2 5 3 2 5 4 1 5 4 2 5 3 2 2 5 2 5 1
输出 #2
3 5 4 2 3 3 3 1
In the first example $p = \{5, 3, 4, 2, 1\}$ .
The first query is to print $p_3$ . The answer is $4$ .
The second query is to print $p_{p_1}$ . The answer is $1$ .
The third query is to swap $p_1$ and $p_3$ . Now $p = \{4, 3, 5, 2, 1\}$ .
The fourth query is to print $p_{p_1}$ . The answer is $2$ .
The first query is to print $p_3$ . The answer is $4$ .
The second query is to print $p_{p_1}$ . The answer is $1$ .
The third query is to swap $p_1$ and $p_3$ . Now $p = \{4, 3, 5, 2, 1\}$ .
The fourth query is to print $p_{p_1}$ . The answer is $2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted