BORW - Black or White


It’s Black, It’s White, It’s Tough For You To Get By
Michael Jackson (1958-2009)


You have a sequence of integers. You can paint each of the integers black or white, or leave it unpainted. The black integers must appear in ascending order and the white integers must appear in descending order. The ascending/descending order must be strict, that is, two integers painted with the same color cannot be equal. Paint the sequence so as to minimize the number of unpainted integers.

Input

The input contains several test cases, each one described in exactly two lines. The first line contains an integer N indicating the number of elements in the sequence (1 ≤ N ≤ 200). The second line contains N integers Xi separated by single spaces, representing the sequence to paint (1 ≤ Xi ≤ 106 for 1 ≤ i ≤ N ). The last line of the input contains a single −1 and should not be processed as a test case.

Output

For each test case output a single line with an integer representing the minimum number of unpainted elements of the sequence, when the sequence is painted optimally following the rules described above.

Example

Input:
8
1 4 2 3 3 2 4 1
12
7 8 1 2 4 6 3 5 2 1 8 7
-1

Output:
0
2

hide comments
Rohit Agarwal: 2016-05-30 11:05:09

I had a doubt on the tc but I understood them.

Last edit: 2016-05-30 18:20:55
naruto09: 2015-12-26 11:20:11

finally AC..:D very good problem..

prodijig: 2015-04-10 00:55:24

can someone please explain the test cases !

Hussain Kara Fallah: 2013-04-14 20:46:32

Move To Tutorial or at least reduce time to a logical limit according to optimal solution !!!!
--ans(francky)--> Try it in Python if you find it too easy...
Nice Problem... Learned A lot

Last edit: 2014-01-21 03:58:50
Erick Manuel Troyo Del Campo Díaz: 2013-01-19 23:02:20

dat time


Added by:Pablo Ariel Heiber
Date:2010-08-22
Time limit:9.584s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS OBJC PERL6 VB.NET
Resource:FCEyN UBA ICPC Selection 2009