eolymp
bolt
Try our new interface for solving problems
Problems

Sleepy Cow Sorting (Bronze)

Sleepy Cow Sorting (Bronze)

Farmer John is attempting to sort his n cows, conveniently numbered 1..n, before they head out to the pastures for breakfast.

Currently, the cows are standing in a line in the order p1, p2, p3, ..., pn, and Farmer John is standing in front of cow p1. He wants to reorder the cows so that they are in the order 1, 2, 3, ..., n, with cow 1 next to Farmer John.

The cows are a bit sleepy today, 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 k paces down the line, for any k in the range 1...n1. The k cows whom she passes will amble forward, making room for her to insert herself in the line after them.

For example, suppose that n = 4 and the cows start off in the following order:

 FJ: 4, 3, 2, 1

The only cow paying attention to FJ is cow 4. If he instructs her to move 2 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 3, so in the second time step he may give cow 3 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 the minimum number of time steps required to sort the cows.

Input

The first line contains n (1n100). The second line contains n integers p1, p2, p3, ..., pn, indicating the starting order of the cows.

Output

Print a single integer: the minimum number of time steps before the n cows are in sorted order, if Farmer John acts optimally.

Time limit 1 second
Memory limit 128 MiB
Input example #1
4
1 2 4 3
Output example #1
3
Source 2019 USACO January, Bronze