#Lutece0776. Trees

Trees

Migrated from Lutece 776 Trees

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

On Bertown's main street nn trees are growing,the tree number ii has the height of aia_i meters (1in1\leq i\leq n). By the arrival of the President of Berland these trees were decided to be changed so that their heights formed a beautiful sequence. This means that the heights of trees on ends (the 1st1_{st} one and the nthn_{th} one) should be equal to each other, the heights of the 2nd2_{nd} and the (n1)th(n-1)_{th} tree must also be equal to each other, at that the height of the 2nd2_{nd} tree should be larger than the height of the first tree by 11,and so on. In other words, the heights of the trees, standing at equal distance from the edge (of one end of the sequence) must be equal to each other, and with the increasing of the distance from the edge by 11 the tree height must also increase by 11.For example, the sequences 2 3 4 5 5 4 3 2 is beautiful, and 1 3 3 1 and 1 2 3 1 are not.

Changing the height of a tree is a very expensive operation, using advanced technologies invented by Berland scientists. In one operation you can choose any tree and change its height to any number, either increase or decrease. Note that even after the change the height should remain a positive integer, i. e, it can't be less than or equal to zero. Identify the smallest number of changes of the trees' height needed for the sequence of their heights to become beautiful.

Input

The first line contains integer TT(T100T\leq 100) which is the number of test cases. The following line contains integer nn (1n1051\leq  n\leq 10^5) which is the number of trees. The following line contains integers aia_i (1ai1051\leq  a_i \leq 10^5) which are the heights of the trees.

Output

Print a single number which is the minimal number of trees whose heights will have to be changed for the sequence to become beautiful.

Samples

2
3
2 2 2
4
1 2 2 1
1
0

Resources

第五届ACM趣味程序设计竞赛第四场(正式赛)