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
baadshah_: 2016-06-22 08:34:04

AC in one GO thanks to the comments for test case :)

pro_98: 2016-06-18 20:23:29

what is the total number of input cars n or is it indicated by a 0 ??

xinnix: 2016-06-18 18:20:17

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

lovelace96: 2016-06-17 14:58:37

awesome implementation of stack and queue. :) ... but costed me one WA due to global declaration :/

Last edit: 2016-06-17 15:00:39
amit_taps1997: 2016-06-05 16:18:35

Its a simple,just use queue and a stack (or array & stack)

sonali9696: 2016-05-26 12:23:16

SIGSEGV when i used stack,queue(stl). Same thing with arrays used as stack,queue gave AC. why?

sonali9696: 2016-05-26 12:21:52

When i used stack,queue using stl it cost me SIGSEGV. Same thing done using arrays acting as stack,queue gave AC.
Test cases: 5 elements- 4,5,2,1,3--> will give no.

Dwarika Pandey: 2016-05-24 10:33:27

Good Stack problem . AC in first go :)

Dilpreet: 2016-05-24 10:27:58

The output is "yes" and "no" and not "Yes" and "No" beware of that
costed me 4 WAs.

Best of luck!

Rishabh Gupta: 2016-05-14 14:42:14

thank u everyone for posting important test cases :) ....helped a lot
really nice stack implementation
AC after 1 SIGSEGV :(


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