STPAR - Street Parade

For sure, the love mobiles will roll again on this summer's street parade. Each year, the organisers decide on a fixed order for the decorated trucks. Experience taught them to keep free a side street to be able to bring the trucks into order.

The side street is so narrow that no two cars can pass each other. Thus, the love mobile that enters the side street last must necessarily leave the side street first. Because the trucks and the ravers move up closely, a truck cannot drive back and re-enter the side street or the approach street.

You are given the order in which the love mobiles arrive. Write a program that decides if the love mobiles can be brought into the order that the organisers want them to be.

Input

There are several test cases. The first line of each test case contains a single number n, the number of love mobiles. The second line contains the numbers 1 to n in an arbitrary order. All the numbers are separated by single spaces. These numbers indicate the order in which the trucks arrive in the approach street. No more than 1000 love mobiles participate in the street parade. Input ends with number 0.

Output

For each test case your program has to output a line containing a single word "yes" if the love mobiles can be re-ordered with the help of the side street, and a single word "no" in the opposite case.

Example

Sample input:
5
5 1 2 4 3 
0

Sample output:
yes

Illustration

The sample input reflects the following situation:

The five trucks can be re-ordered in the following way:


Added by:Patryk Pomykalski
Date:2004-07-01
Time limit:1s-2s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS PERL6 VB.NET
Resource:Swiss Olympiad in Informatics 2004

hide comments
2015-08-10 14:37:59
Nice problem..... :)
2015-07-25 08:23:06 iammangod96
1 stack, 2 vector, 1 sort
2015-07-16 21:26:09 Akshay Aradhya
Hint : deque, stack, vector :) This is STL 101
2015-07-16 21:10:15 Akshay Aradhya
LOL everyone is thanking Liber(China) , so I decided to see what he posted.Hes actually posted a few testcases which were really needed to debug my program.Here they are :
5
4 1 5 3 2
5
3 1 2 5 4
5
5 3 2 1 4
10
1 2 10 5 4 3 7 6 8 9
10
1 2 10 5 4 3 9 8 7 6
5
3 5 2 4 1
5
1 2 4 3 5
4
4 2 3 1
no
yes
yes
yes
yes
no
yes
no
2015-07-15 19:39:38 pankaj joshi
ac in 1 go ..use stl only
2015-07-01 19:59:56
ac in first go.simple use of two arrays ,one quicksort and a stack .. be careful with the o/p it must be yes/no (small)
(y) thanks everyone who posted testcases in the commments even without o/p :) :P
2015-06-29 06:32:41 Shantanu Banerjee
Trucks cant go Backwards so why WA?
2015-06-25 17:49:04
AC in first Go ! Thanks @Liber (China)
2015-06-22 07:39:35 [Mayank Pratap]
If u have solved ONP this is just 5min problem.......Got 2 sigsegv for not using n==0 break condition ....
2015-06-21 14:39:05 mohit
only one logic.. find the deciding condition for 'no' in terms of the lane's stack.
© Spoj.com. All Rights Reserved. Spoj uses Sphere Engine™ © by Sphere Research Labs.