#P1491G. Switch and Flip

    ID: 835 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>constructive algorithmsgraphsmath*2800

Switch and Flip

No submission language available for this problem.

Description

There are nn coins labeled from 11 to nn. Initially, coin cic_i is on position ii and is facing upwards ((c1,c2,,cn)c_1, c_2, \dots, c_n) is a permutation of numbers from 11 to nn). You can do some operations on these coins.

In one operation, you can do the following:

  • Choose 22 distinct indices ii and jj.

  • Then, swap the coins on positions ii and jj.

  • Then, flip both coins on positions ii and jj. (If they are initially faced up, they will be faced down after the operation and vice versa)

Construct a sequence of at most n+1n+1 operations such that after performing all these operations the coin ii will be on position ii at the end, facing up.

Note that you do not need to minimize the number of operations.

The first line contains an integer nn (3n21053 \leq n \leq 2 \cdot 10^5) — the number of coins.

The second line contains nn integers c1,c2,,cnc_1,c_2,\dots,c_n (1cin1 \le c_i \le n, cicjc_i \neq c_j for iji\neq j).

In the first line, output an integer qq (0qn+1)(0 \leq q \leq n+1) — the number of operations you used.

In the following qq lines, output two integers ii and jj (1i,jn,ij)(1 \leq i, j \leq n, i \ne j) — the positions you chose for the current operation.

Input

The first line contains an integer nn (3n21053 \leq n \leq 2 \cdot 10^5) — the number of coins.

The second line contains nn integers c1,c2,,cnc_1,c_2,\dots,c_n (1cin1 \le c_i \le n, cicjc_i \neq c_j for iji\neq j).

Output

In the first line, output an integer qq (0qn+1)(0 \leq q \leq n+1) — the number of operations you used.

In the following qq lines, output two integers ii and jj (1i,jn,ij)(1 \leq i, j \leq n, i \ne j) — the positions you chose for the current operation.

Samples

Sample Input 1

3
2 1 3

Sample Output 1

3
1 3
3 2
3 1

Sample Input 2

5
1 2 3 4 5

Sample Output 2

0

Note

Let coin ii facing upwards be denoted as ii and coin ii facing downwards be denoted as i-i.

The series of moves performed in the first sample changes the coins as such:

  • [   2,   1,   3][~~~2,~~~1,~~~3]
  • [3,   1,2][-3,~~~1,-2]
  • [3,   2,1][-3,~~~2,-1]
  • [   1,   2,   3][~~~1,~~~2,~~~3]

In the second sample, the coins are already in their correct positions so there is no need to swap.