3474.Cinema Line

Time Limit: 1s Memory Limit: 256MB

The new "Die Hard" movie has just been released! There are n people at the cinema box office standing in a huge line. Each of them has a single 100, 50 or 25 ruble bill. A "Die Hard" ticket costs 25 rubles. Can the booking clerk sell a ticket to each person and give the change if he initially has no money and sells the tickets strictly in the order people follow in the line?

Input Format(From the terminal/stdin)

The first line contains integer n (1 \le n \le 105) - the number of people in the line. The next line contains n integers, each of them equals 25, 50 or 100 - the values of the bills the people have. The numbers are given in the order from the beginning of the line (at the box office) to the end of the line.

Output Format(To the terminal/stdout)

Print "YES" (without the quotes) if the booking clerk can sell a ticket to each person and give the change. Otherwise print "NO".

Sample Input 1

Copy
4
25 25 50 50
 \n
  ·  ·  ·  \n

Sample Output 1

Copy
YES
   \n

Sample Input 2

Copy
2
25 100
 \n
  ·   \n

Sample Output 2

Copy
NO
  \n

Sample Input 3

Copy
4
50 50 25 25
 \n
  ·  ·  ·  \n

Sample Output 3

Copy
NO
  \n

Submit

请先 登录

© 2025 FAQs