Greedy Increasing Subsequences
문제
Jimmy's homework is to find a long increasing subsequence of a given sequence . But the sequence is really long! Jimmy doesn't know how to do this effectively.
So Jimmy takes a greedy approach. He begins by picking the first number in the sequence. Then he repeats the following rule until it no longer applies: pick the next number in the sequence that is bigger than the number he just picked.
More precisely, Jimmy picks the subsequence where:
- For each , is the smallest index greater than such that
- for every
Jimmy realizes that this may not produce a very long subsequence. So to help him find other subsequences, he removes from the given sequence and finds another increasing subsequence using his greedy algorithm on the remaining sequence. He repeats this until he has used up all numbers from the original sequence.
But even this is starting to sound exhausting for Jimmy, so he asks you to help him by finding all of the sequences that would be formed by repeatedly applying the above greedy procedure and removing the resulting subsequence until the given sequence is empty.
입력
The first line of input contains a single integer () indicating the length of the original sequence.
The second line of input contains integers ().
출력
The first line of output contains the number of sequences that are produced. The next lines contain the sequences, the th such line containing the increasing subsequence that is formed in the th application of the greedy algorithm.
예제
예제 1
7 2 2 1 5 3 4 6
3 2 5 6 2 3 4 1
예제 2
7 8 6 7 5 3 0 9
5 8 9 6 7 5 3 0