Street Parade


Submit solution

Points: 100 (partial)
Time limit: 2.0s
Java 8 4.0s
Python 4.0s
Memory limit: 1G

Author:
Problem types
Allowed languages
Ada, Assembly, Awk, BrainF***, C, C#, C++, Dart, Go, Java, JS, Kotlin, Lua, Pascal, Perl, Prolog, Python, Scala, Swift, VB

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.

Sample input:

5
5 1 2 4 3 
5
3 1 2 5 4
5
4 1 5 3 2
0

Sample output:

yes
yes
no

Explanation

The first sample input reflects the following situation:

Imagen 1

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

Imagen 2

Imagen 3

Imagen 4

Imagen 5

Imagen 6


Comments


  • 2
    Mauricio  commented on Jan. 19, 2024, 7:40 p.m.

    Por favor la imagenes.


  • 0
    legion06  commented on March 6, 2023, 5:29 p.m.

    pq este problema me da tle solamente introduciendo los datos


  • 0
    legion06  commented on Aug. 18, 2022, 6:15 p.m.

    ok bro gracias ya entendi


  • 0
    Osnielfc_07  commented on Aug. 16, 2022, 4:28 p.m.

    Legion la entrada es infinita mientras que n!=0 o sea:

    while(1){ cin>>n; if(!n)break; //code }


  • 0
    legion06  commented on Aug. 11, 2022, 2:41 p.m.

    pero donde me dan el numero de casos pruebas


  • 2
    isidrito  commented on March 9, 2021, 11:52 p.m.

    Y LAS IMAGENES??????


  • 3
    DMarcelo  commented on Oct. 3, 2018, 12:08 p.m.

    Hee porque no se ven las imagenes ya yo resolvi pero las demas personas que aun no lo resuelven o quiran resolverlo les sera mas dificil !!por favor coloquen las imagenes!!!


  • -9
    yuniels  commented on March 12, 2018, 3:17 p.m.

    This comment is hidden due to too much negative feedback. Show it anyway.


  • -17
    yuniels  commented on Feb. 24, 2018, 10:21 p.m.

    This comment is hidden due to too much negative feedback. Show it anyway.