시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 256 MB52111038.462%

문제

Felix is working on a startup project in his garage. He has already found a great name for his project: SuperFastZilla. By now he is not sure what SuperFastZilla should do, but he is pretty sure it should do it fast, super fast.

Once he noticed that SuperFastZilla is working too slow, inspite of the fast algorithms used in it. Felix thinks that the problem may be caused by storage fragmentation.

The storage used by SuperFastZilla consists of n blocks of memory. SuperFastZilla performs some operations on this storage. Each block is used in one operation only, the i-th block is used in the ai-th operation.

Felix wants to sort these blocks by the index of the operation they are used. To make it faster, Felix wants to split the storage into minimal number of segments of consecutive blocks, and then rearrange these segments to get the sorted array of blocks. After this rearrangement the order of block’s indices of operations must be non-decreasing.

Help Felix to find the way to split the storage that minimizes the number of segments.

For example, if a = [2, 3, 1, 1, 2, 2, 1], it can be split into three parts: [2, 3], [1, 1, 2, 2] and [1]. These parts can be rearranged to make the sorted array: [1], [1, 1, 2, 2], [2, 3].

입력

The first line of input file contains an integer n (1 ≤ n ≤ 105). The next line contains n integers ai (1 ≤ ai ≤ 105).

출력

The first line of the output file must contain an integer number m — the minimal number of segments.

The next line must contains m integers, the lengths of the segments, from left to right.

예제 입력 1

7
2 3 1 1 2 2 1

예제 출력 1

3
2 4 1