CF349A.Cinema Line

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The new "Die Hard" movie has just been released! There are nn people at the cinema box office standing in a huge line. Each of them has a single 100100 , 5050 or 2525 ruble bill. A "Die Hard" ticket costs 2525 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?

输入格式

The first line contains integer nn (1<=n<=105)(1<=n<=10^{5}) — the number of people in the line. The next line contains nn integers, each of them equals 2525 , 5050 or 100100 — 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.

输出格式

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

输入输出样例

  • 输入#1

    4
    25 25 50 50
    

    输出#1

    YES
    
  • 输入#2

    2
    25 100
    

    输出#2

    NO
    
  • 输入#3

    4
    50 50 25 25
    

    输出#3

    NO
    
首页