Improvements
题号:NC54477
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
64bit IO Format: %lld

题目描述

Son Halo owns n spaceships numbered from 1 to n and a space station. They are initially placed on one line with the space station so the spaceship i is positioned xi meters from the station and all ships are on the same side from the station (xi > 0). All xi are distinct. Station is considered to have number 0 and x0 is considered to be equal to 0.
Every two spaceships with consequent numbers are connected by a rope, and the first one is connected to the station. The rope number i (for 1 ≤ i ≤ n) connects ships i and i−1. Note, that the rope number 1 connects the first ship to the station.
Son Halo considers that the rope i and the rope j intersect when the segments  and  have common internal point but neither one of them is completely contained in the other, where , .

Son Halo wants to rearrange spaceships in such a way, that there are no rope intersections. Because he is lazy, he wants to rearrange the ships in such a way, that the total number of ships that remain at their original position xi is maximal. All the ships must stay on the same side of the station and at different positions xi after rearrangement. However, ships can occupy any real positions xi after rearrangement.
Your task is to figure out what is the maximal number of ships that can remain at their initial positions.

输入描述:

The first line of the input file contains n (1 ≤ n ≤ 200 000) — the number of ships. The following line contains n distinct integers xi (1 ≤ xi ≤ n) — the initial positions of the spaceships.

输出描述:

The output file must contain one integer — the maximal number of ships that can remain at their initial positions in the solution of this problem.
示例1

输入

复制
4
1 3 2 4

输出

复制
3

说明

In the first sample Son Halo can move the second spaceship in the position between the first and the third to solve the problem while keeping 3 other ships at their initial positions.
示例2

输入

复制
4
1 4 2 3

输出

复制
4

说明

In the second sample there are no rope intersections, so all 4 ships can be left at their initial positions.

备注:

Author: Vitaliy Aksenov