![]() |
Sorting
|
In this task the possible key values are the integers 1, 2 and 3. The required sorting order is non-decreasing. Sorting has to be accomplished by a sequence of exchange operations. An exchange operation, defined by two position numbers p and q, exchanges the elements in positions p and q.
You are given a sequence of key values. Write a program that computes the minimal number of exchange operations that are necessary to make the sequence sorted. (Subtask A). Moreover, construct a sequence of exchange operations for the respective sorting (Subtask B).
The first line of file INPUT.TXT contains the number of records N (1<=N<=1000). Each of the following N lines contains a key value.
Write on the first line of file OUTPUT.TXT the minimal number L of exchange operations needed to make the sequence sorted (Subtask A). The following L lines give the respective sequence of the exchange operations in the order performed. Each line contains one exchange operation described by two numbers p and q, the positions of the two elements to be exchanged (Subtask B). Positions are denoted by the numbers from 1 to N.
INPUT.TXT OUTPUT.TXT 9 4 2 1 3 2 4 7 1 9 2 3 5 9 3 3 2 3 1
Swapping two keys is called perfect if both are in their
proper places after the swap, and is called semi-perfect
if only one key is in its proper place after the swap
(these are my own terminology, feel free to laugh )
First we will place all 1's in their range. We will try to perform perfect swaps if possible, and perform a semi-perfect swap only if not. Second, we will place all 2's in their range. Since all 1's are in their places by now, we will have to deal with the 3's only. This means that these swaps will all be perfect swaps.
![]() |
![]() |