Farmer John is attempting to sort his NN cows (1≤N≤1051≤N≤105), conveniently numbered 1…N1…N, before they head out to the pastures for breakfast.
Currently, the cows are standing in a line in the order p1,p2,p3,…,pNp1,p2,p3,…,pN, and Farmer John is standing in front of cow p1p1. He wants to reorder the cows so that they are in the order 1,2,3,…,N1,2,3,…,N, with cow 11 next to Farmer John.
Today the cows are a bit sleepy, so at any point in time the only cow who is paying attention to Farmer John's instructions is the cow directly facing Farmer John. In one time step, he can instruct this cow to move kk paces down the line, for any kk between 11and N−1N−1 inclusive. The kk cows whom she passes will amble forward, making room for her to insert herself in the line after them.
For example, suppose that N=4N=4 and the cows start off in the following order:
FJ: 4, 3, 2, 1
The only cow paying attention to FJ is cow 44. If he instructs her to move 22 paces down the line, the order will subsequently look like this:
FJ: 3, 2, 4, 1
Now the only cow paying attention to FJ is cow 33, so in the second time step he may give cow 33 an instruction, and so forth until the cows are sorted.
Farmer John is eager to complete the sorting, so he can go back to the farmhouse for his own breakfast. Help him find a sequence of instructions that sorts the cows in the minimum number of time steps.
INPUT FORMAT (file sleepy.in):
The first line of input contains NN. The second line contains NN space-separated integers: p1,p2,p3,…,pNp1,p2,p3,…,pN, indicating the starting order of the cows.
The first line should contain a single integer, KK, giving the minimum number of time steps required to sort the cows.The second line should contain KK space-separated integers, c1,c2,…,cKc1,c2,…,cK, each in the range 1…N−11…N−1. Furthermore, if in the ii-th time step FJ instructs the cow facing him to move cici paces down the line, then after KK time steps the cows should be in sorted order.
If there are multiple optimal instruction sequences, your program may output any of them.
SAMPLE INPUT:
4 1 2 4 3
SAMPLE OUTPUT:
3 2 2 3
Problem credits: Dhruv Rohatgi
翰林课程体验,退费流程快速投诉邮箱: yuxi@linstitute.net 沪ICP备2023009024号-1