PASIJANS
Pasijans, patience, or solitaire is the name for a group of single player card games. One new such game, so new it has no name, is played with cards sporting random integers as values. The game starts by shuffling all cards and distributing them in N sequences, not necessarily of equal length.
During each turn, the player can remove the first card in any sequence and place it at the end of the “Solution sequence”. The card that was second in the selected sequence now becomes the first and the turn ends. Of course once the card is in the “Solution sequence” it cannot be removed, replaced or altered in any way. So don't even try.
The game ends when all cards are in the “Solution sequence”. The object of the game is to construct the best possible “Solution sequence”. One sequence is better than the other if for the first cards they differ, lets call them X and Y, the value on the card X is smaller than the value on the card Y.
Write a program that finds the best possible “Solution sequence”.
Next N lines contain description of input sequences. Each line starts with an integer L (1 ≤ L ≤ 1000), length of the sequence. It's followed by L integers, smaller than 100.000.000.
Input:
3
1 2
1 100
1 1Output:
1 2 100Input:
2
5 10 20 30 40 50
2 28 27Output:
10 20 28 27 30 40 50Input:
2
3 5 1 2
3 5 1 1Output:
5 1 1 5 1 2 Submit solution
Coming laterThe grading service will be connected in a later migration step. You can inspect the task and your previous results now.