#D4095. Map
Map
Map
For a dictionary that stores elements formed by a pair of a string key and an integer value, perform a sequence of the following operations. Note that multiple elements can have equivalent keys.
- insert(, ): Insert an element formed by a pair of and to .
- get(): Print all values with the specified .
- delete(): Delete all elements with the specified .
- dump(, ): Print all elements formed by a pair of the key and the value such that the key is greater than or equal to and less than or equal to in lexicographic order.
Constraints
- length of
- consists of lower-case letters
- in lexicographic order
- The total number of elements printed by get operations does not exceed
- The total number of elements printed by dump operations does not exceed
Input
The input is given in the following format.
:
Each query is given by
0
or
1
or
2
or
3
where the first digits 0, 1, 2 and 3 represent insert, get, delete and dump operations.
Output
For each get operation, print the corresponding values in the order of insertions. For each dump operation, print the corresponding elements formed by a pair of the key and the value. For the dump operation, print the elements in ascending order of the keys, in case of a tie, in the order of insertions.
Example
Input
10 0 blue 6 0 red 1 0 blue 4 0 white 5 1 red 1 blue 2 red 1 black 1 red 3 w z
Output
1 6 4 white 5
inputFormat
Input
The input is given in the following format.
:
Each query is given by
0
or
1
or
2
or
3
where the first digits 0, 1, 2 and 3 represent insert, get, delete and dump operations.
outputFormat
Output
For each get operation, print the corresponding values in the order of insertions. For each dump operation, print the corresponding elements formed by a pair of the key and the value. For the dump operation, print the elements in ascending order of the keys, in case of a tie, in the order of insertions.
Example
Input
10 0 blue 6 0 red 1 0 blue 4 0 white 5 1 red 1 blue 2 red 1 black 1 red 3 w z
Output
1 6 4 white 5
样例
10
0 blue 6
0 red 1
0 blue 4
0 white 5
1 red
1 blue
2 red
1 black
1 red
3 w z
1
6
4
white 5
</p>