MORENA - Morenas Candy Shop ( Easy )

no tags 

HARDER VERSION: www.spoj.com/problems/HILO/

Brunette's is a big candy shop from Little Campina in Paraibas, Brazil. This company is known for making the best candies in the world. Matheus Pheverso is the president of this company and he has a sister called Morena who loves and helps him in running the company. She uses to go the supermarket every day and buy a lot of stuffs to make all the candies. But she's insane and likes to take an alternate path to go to the supermarket.

Given the streets heights, a path is alternate only if the differences between successive numbers strictly alternate between positive and negative.

Example:

- Street Heights: {1, 3, 4, 5, 2, 9, 8, 10}

- Alternate Paths: {1, 3, 2, 9, 8}, {1, 4, 2, 8} {1, 5, 2, 9, 8}

Matheus Pheverso is a friendly brother and he would like to know the longest alternate path between the first supermarket and the last supermarket, this means that his sister always starts at the supermarket number 1, and always ends at the last supermarket.

Given the number of supermarkets, and their heights, your task is to print the longest alternate path between the first and the last city.

Input

There is a single positive integer N on the first line of input (1 <= N <= 10^6) representing the number of supermarkets. In the second line there're N integers Ai representing the heights of each supermarket (-10^18 <= Ai <= 10^18).

Output

You have to print the longest alternate path between the first and the last supermarket. The supermarket number 1 is always the first, and the supermarket number N is always the last one.

Example

Input:
5
1 2 3 4 5

Output
2
Input:
8
1 4 2 10 1 9 7 8

Output
8

hide comments
david_8k: 2012-10-11 10:10:28

People who don't understand the statement should follow this problem like:

"You must choose the longest "alternate path"". A longest alternate path is considered some contiguous segment from i to j, such that A[i] <= or >= A[i+1] >= or <= A[i+2] <= or >= A[i+3] ... >= or <= A[j]. The segment j MUST be the N-1 element on the list.

Last edit: 2012-09-17 12:12:31
Mateus Dantas [ UFCG ]: 2012-09-13 21:22:51

4 1 1 1 1 = 2
1 1 = 1

parag agrawal: 2012-09-13 04:14:48

what should be the answer for 4 1 1 1 1 ? and 1 1?

Last edit: 2012-09-13 05:30:27

Added by:Mateus Dantas [ UFCG ]
Date:2012-09-11
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64