#AGC024B. [AGC024B] Backfront

[AGC024B] Backfront

Score : 500500 points

Problem Statement

You are given a sequence (P1,P2,...,PN)(P_1,P_2,...,P_N) which is a permutation of the integers from 11 through NN. You would like to sort this sequence in ascending order by repeating the following operation:

  • Choose an element in the sequence and move it to the beginning or the end of the sequence.

Find the minimum number of operations required. It can be proved that it is actually possible to sort the sequence using this operation.

Constraints

  • 1N2×1051 \leq N \leq 2\times 10^5
  • (P1,P2,...,PN)(P_1,P_2,...,P_N) is a permutation of (1,2,...,N)(1,2,...,N).
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

P1P_1

::

PNP_N

Output

Print the minimum number of operations required.

4
1
3
2
4
2

For example, the sequence can be sorted in ascending order as follows:

  • Move 22 to the beginning. The sequence is now (2,1,3,4)(2,1,3,4).
  • Move 11 to the beginning. The sequence is now (1,2,3,4)(1,2,3,4).
6
3
2
5
1
4
6
4
8
6
3
1
2
7
4
8
5
5