304500: CF858E. Tests Renumeration

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Tests Renumeration

题目描述

The All-Berland National Olympiad in Informatics has just ended! Now Vladimir wants to upload the contest from the Olympiad as a gym to a popular Codehorses website. Unfortunately, the archive with Olympiad's data is a mess. For example, the files with tests are named arbitrary without any logic. Vladimir wants to rename the files with tests so that their names are distinct integers starting from $ 1 $ without any gaps, namely, "1", "2", ..., " $ n $ ', where $ n $ is the total number of tests. Some of the files contain tests from statements (examples), while others contain regular tests. It is possible that there are no examples, and it is possible that all tests are examples. Vladimir wants to rename the files so that the examples are the first several tests, all all the next files contain regular tests only. The only operation Vladimir can perform is the "move" command. Vladimir wants to write a script file, each of the lines in which is "move file\_1 file\_2", that means that the file "file\_1" is to be renamed to "file\_2". If there is a file "file\_2" at the moment of this line being run, then this file is to be rewritten. After the line "move file\_1 file\_2" the file "file\_1" doesn't exist, but there is a file "file\_2" with content equal to the content of "file\_1" before the "move" command. Help Vladimir to write the script file with the minimum possible number of lines so that after this script is run: - all examples are the first several tests having filenames "1", "2", ..., " $ e $ ", where $ e $ is the total number of examples; - all other files contain regular tests with filenames " $ e+1 $ ", " $ e+2 $ ", ..., " $ n $ ", where $ n $ is the total number of all tests.

输入输出格式

输入格式


The first line contains single integer $ n $ ( $ 1<=n<=10^{5} $ ) — the number of files with tests. $ n $ lines follow, each describing a file with test. Each line has a form of "name\_i type\_i", where "name\_i" is the filename, and "type\_i" equals "1", if the $ i $ -th file contains an example test, and "0" if it contains a regular test. Filenames of each file are strings of digits and small English letters with length from $ 1 $ to $ 6 $ characters. The filenames are guaranteed to be distinct.

输出格式


In the first line print the minimum number of lines in Vladimir's script file. After that print the script file, each line should be "move file\_1 file\_2", where "file\_1" is an existing at the moment of this line being run filename, and "file\_2" — is a string of digits and small English letters with length from $ 1 $ to $ 6 $ .

输入输出样例

输入样例 #1

5
01 0
2 1
2extra 0
3 1
99 0

输出样例 #1

4
move 3 1
move 01 5
move 2extra 4
move 99 3

输入样例 #2

2
1 0
2 1

输出样例 #2

3
move 1 3
move 2 1
move 3 2

输入样例 #3

5
1 0
11 1
111 0
1111 1
11111 0

输出样例 #3

5
move 1 5
move 11 1
move 1111 2
move 111 4
move 11111 3

Input

加入题单

算法标签: