A14855 | Replace the Numbers
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You have an array of integers (initially empty).
You have to perform $q$ queries. Each query is of one of two types:
- " $1$ $x$ " — add the element $x$ to the end of the array;
- " $2$ $x$ $y$ " — replace all occurrences of $x$ in the array with $y$ .
Find the resulting array after performing all the queries.
You have to perform $q$ queries. Each query is of one of two types:
- " $1$ $x$ " — add the element $x$ to the end of the array;
- " $2$ $x$ $y$ " — replace all occurrences of $x$ in the array with $y$ .
Find the resulting array after performing all the queries.
输入格式
The first line contains a single integer $q$ ( $1 \le q \le 5 \cdot 10^5$ ) — the number of queries.
Next $q$ lines contain queries (one per line). Each query is of one of two types:
- " $1$ $x$ " ( $1 \le x \le 5 \cdot 10^5$ );
- " $2$ $x$ $y$ " ( $1 \le x, y \le 5 \cdot 10^5$ ).
It's guaranteed that there is at least one query of the first type.
Next $q$ lines contain queries (one per line). Each query is of one of two types:
- " $1$ $x$ " ( $1 \le x \le 5 \cdot 10^5$ );
- " $2$ $x$ $y$ " ( $1 \le x, y \le 5 \cdot 10^5$ ).
It's guaranteed that there is at least one query of the first type.
输出格式
In a single line, print $k$ integers — the resulting array after performing all the queries, where $k$ is the number of queries of the first type.
输入输出样例
输入 #1
7 1 3 1 1 2 1 2 1 2 1 1 1 2 2 1 3
输出 #1
3 2 2 3 2
输入 #2
4 1 1 1 2 1 1 2 2 2
输出 #2
1 2 1
输入 #3
8 2 1 4 1 1 1 4 1 2 2 2 4 2 4 3 1 2 2 2 7
输出 #3
1 3 3 7
In the first example, the array changes as follows:
$[]$ $\rightarrow$ $[3]$ $\rightarrow$ $[3, 1]$ $\rightarrow$ $[3, 2]$ $\rightarrow$ $[3, 2, 2]$ $\rightarrow$ $[3, 2, 2, 1]$ $\rightarrow$ $[3, 2, 2, 1, 2]$ $\rightarrow$ $[3, 2, 2, 3, 2]$ .
In the second example, the array changes as follows:
$[]$ $\rightarrow$ $[1]$ $\rightarrow$ $[1, 2]$ $\rightarrow$ $[1, 2, 1]$ $\rightarrow$ $[1, 2, 1]$ .
In the third example, the array changes as follows:
$[]$ $\rightarrow$ $[]$ $\rightarrow$ $[1]$ $\rightarrow$ $[1, 4]$ $\rightarrow$ $[1, 4, 2]$ $\rightarrow$ $[1, 4, 4]$ $\rightarrow$ $[1, 3, 3]$ $\rightarrow$ $[1, 3, 3, 2]$ $\rightarrow$ $[1, 3, 3, 7]$ .
$[]$ $\rightarrow$ $[3]$ $\rightarrow$ $[3, 1]$ $\rightarrow$ $[3, 2]$ $\rightarrow$ $[3, 2, 2]$ $\rightarrow$ $[3, 2, 2, 1]$ $\rightarrow$ $[3, 2, 2, 1, 2]$ $\rightarrow$ $[3, 2, 2, 3, 2]$ .
In the second example, the array changes as follows:
$[]$ $\rightarrow$ $[1]$ $\rightarrow$ $[1, 2]$ $\rightarrow$ $[1, 2, 1]$ $\rightarrow$ $[1, 2, 1]$ .
In the third example, the array changes as follows:
$[]$ $\rightarrow$ $[]$ $\rightarrow$ $[1]$ $\rightarrow$ $[1, 4]$ $\rightarrow$ $[1, 4, 2]$ $\rightarrow$ $[1, 4, 4]$ $\rightarrow$ $[1, 3, 3]$ $\rightarrow$ $[1, 3, 3, 2]$ $\rightarrow$ $[1, 3, 3, 7]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted