A1382.[COCI-2008_2009-contest4]#2 MJEHURIC

普及/提高-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Goran has five wooden pieces arranged in a sequence. There is a number between 1 and 5 inscribed on every piece, so that every number appears on exactly one of the five pieces.
Goran wants to order the pieces to form the sequence 1, 2, 3, 4, 5 and does it like this:

  1. If the number on the first piece is greater than the number on the second piece, swap them.
  2. If the number on the second piece is greater than the number on the third piece, swap them.
  3. If the number on the third piece is greater than the number on the fourth piece, swap them.
  4. If the number on the fourth piece is greater than the number on the fifth piece, swap them.
  5. If the pieces don't form the sequence 1, 2, 3, 4, 5, go to step

Write a program that, given the initial ordering of the pieces, outputs the ordering after each swap.

输入格式

The first line contains five integers separated by single spaces, the ordering of the pieces.
The numbers will be between 1 and 5 (inclusive) and there will be no duplicates.
The initial ordering will not be 1, 2, 3, 4,
5.

输出格式

After any two pieces are swapped, output the ordering of the pieces, on a single line separated by spaces.

输入输出样例

  • 输入#1

    2 1 5 3 4

    输出#1

    1 2 5 3 4 
    1 2 3 5 4 
    1 2 3 4 5
  • 输入#2

    2 3 4 5 1

    输出#2

    2 3 4 1 5 
    2 3 1 4 5 
    2 1 3 4 5 
    1 2 3 4 5

说明/提示

首页