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
sk128: 2021-08-11 13:32:02

There is no necessity of using queue here , but it feels good to use it .

swapnilj9: 2021-07-18 11:23:50

don't forget to run until n is 0.

Last edit: 2021-07-18 11:29:27
Waseem Ahmed: 2021-06-26 22:02:59

Simple problem solved using a single stack.

Thanks @rajeev_3686. Your test case really helped!!

madhur_55: 2021-06-23 05:17:01

This problem is soooooooooooo good :)
Also solved it Using Single Stack

Last edit: 2021-06-23 05:18:42
aftab1: 2021-06-20 22:04:36

I see to remember tower of hannoi lol!!


happydracula: 2021-06-18 11:28:24

Can anyone tell me what are the "15 needed problems"?

happydracula: 2021-06-18 11:27:55

Lets goooo

rajeev_3686: 2021-06-17 14:11:22

this test case might help
10
1 2 10 5 4 3 9 8 7 6
yes

augsaksham: 2021-05-29 08:45:48

Solved it using just a single stack :)

Rafail Loizou: 2021-05-09 20:03:38

you don't even need a queue as many say in the comments.
Also multiple cases be careful.


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