A14110 | Switch and Flip
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ coins labeled from $1$ to $n$ . Initially, coin $c_i$ is on position $i$ and is facing upwards (( $c_1, c_2, \dots, c_n)$ is a permutation of numbers from $1$ to $n$ ). You can do some operations on these coins.
In one operation, you can do the following:
- Choose $2$ distinct indices $i$ and $j$ .
- Then, swap the coins on positions $i$ and $j$ .
- Then, flip both coins on positions $i$ and $j$ . (If they are initially faced up, they will be faced down after the operation and vice versa)
Construct a sequence of at most $n+1$ operations such that after performing all these operations the coin $i$ will be on position $i$ at the end, facing up.
Note that you do not need to minimize the number of operations.
In one operation, you can do the following:
- Choose $2$ distinct indices $i$ and $j$ .
- Then, swap the coins on positions $i$ and $j$ .
- Then, flip both coins on positions $i$ and $j$ . (If they are initially faced up, they will be faced down after the operation and vice versa)
Construct a sequence of at most $n+1$ operations such that after performing all these operations the coin $i$ will be on position $i$ at the end, facing up.
Note that you do not need to minimize the number of operations.
输入格式
The first line contains an integer $n$ ( $3 \leq n \leq 2 \cdot 10^5$ ) — the number of coins.
The second line contains $n$ integers $c_1,c_2,\dots,c_n$ ( $1 \le c_i \le n$ , $c_i \neq c_j$ for $i\neq j$ ).
The second line contains $n$ integers $c_1,c_2,\dots,c_n$ ( $1 \le c_i \le n$ , $c_i \neq c_j$ for $i\neq j$ ).
输出格式
In the first line, output an integer $q$ $(0 \leq q \leq n+1)$ — the number of operations you used.
In the following $q$ lines, output two integers $i$ and $j$ $(1 \leq i, j \leq n, i \ne j)$ — the positions you chose for the current operation.
In the following $q$ lines, output two integers $i$ and $j$ $(1 \leq i, j \leq n, i \ne j)$ — the positions you chose for the current operation.
输入输出样例
输入 #1
3 2 1 3
输出 #1
3 1 3 3 2 3 1
输入 #2
5 1 2 3 4 5
输出 #2
0
Let coin $i$ facing upwards be denoted as $i$ and coin $i$ facing downwards be denoted as $-i$ .
The series of moves performed in the first sample changes the coins as such:
- $[~~~2,~~~1,~~~3]$
- $[-3,~~~1,-2]$
- $[-3,~~~2,-1]$
- $[~~~1,~~~2,~~~3]$
In the second sample, the coins are already in their correct positions so there is no need to swap.
The series of moves performed in the first sample changes the coins as such:
- $[~~~2,~~~1,~~~3]$
- $[-3,~~~1,-2]$
- $[-3,~~~2,-1]$
- $[~~~1,~~~2,~~~3]$
In the second sample, the coins are already in their correct positions so there is no need to swap.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted