CF1491G.Switch and Flip
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n coins labeled from 1 to n . Initially, coin ci is on position i and is facing upwards (( c1,c2,…,cn) 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.
输入格式
The first line contains an integer n ( 3≤n≤2⋅105 ) — the number of coins.
The second line contains n integers c1,c2,…,cn ( 1≤ci≤n , ci=cj for i=j ).
输出格式
In the first line, output an integer q (0≤q≤n+1) — the number of operations you used.
In the following q lines, output two integers i and j (1≤i,j≤n,i=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.