#0002A2

Turbo

Frane has been given the task of sorting an array of numbers. The array consists of N integers, each between 1 and N (inclusive), with each of those appearing exactly once in the array. Frane has come up with the following sorting algorithm which operates in N phases, and named it turbosort:
• In the first phase, the number 1 is moved to position 1 by repeatedly swapping consecutive elements.
• In the second phase, the number N is moved to position N in the same manner.
• In the third phase, the number 2 is moved to position 2.
• In the fourth phase, the number N−1 is moved to position N−1.
• And so on.
In other words, when the number of the phase is odd, Frane will choose the smallest number not yet chosen, and move it to its final position. In even phases he chooses the largest number not yet chosen. Write a program which, given the initial array, output the number of swaps in each phase of the algorithm.


InputThe first line contains an integer N (1 ≤ N ≤ 100 000), the number of elements in the array. Each of the following N lines contains an integer between 1 and N (inclusive), the array to be sorted. The array will contain no duplicates.

OutputFor each of the N phases, output the number of swaps on a single line.

Input:
3
2
1
3

Output:
1
0
0


Input:
5
5
4
3
2
1

Output:
4
3
2
1
0


Input:
7
5
4
3
7
1
2
6

Output:
4
2
3
0
2
1
0


Submit solution

Coming later

The grading service will be connected in a later migration step. You can inspect the task and your previous results now.