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:


hide comments
code_aim: 2017-07-09 18:59:55

Queue + Stack

Rahul Kathuria: 2017-07-05 22:54:53

They haven't considered the case that what if array is already sorted in descending order.My SPOJ accepted code was breaking in that case!

monukumar: 2017-06-17 11:45:16

Easy! AC in 1 go.

arvind002: 2017-05-25 20:48:01

Learned a lot from this question. :)

sagnik_66: 2017-05-22 09:42:42

Great Problem! :D

last_mohican: 2017-05-10 13:23:43

Two solutions! The first one (C++) with stacks and the second, more elegant one (Haskell), with no stack at all!

Last edit: 2017-05-10 13:29:11
coder44: 2017-05-06 20:58:07

AC in one go......
Awesome question for learning implementation of stacks...

shauryauppal: 2017-04-13 06:11:18

Use two stacks to solve the problem and try to get answer no first (understand in with cases answer would be no) else print yes.

try tc-5 3 2 1 4 to solve

manishkc: 2017-04-04 21:17:47

AC in one go !!

hamhom2008: 2017-03-20 16:36:37

nice stack problem


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