CodeForces 349A Cinema Line

A. Cinema Line
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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

The first line contains integer n (1 ≤ n ≤ 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

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

Sample test(s)
Input
4
25 25 50 50
Output
YES
Input
2
25 100
Output
NO
Input
4
50 50 25 25
Output
NO


#include<stdio.h> 
#include<string.h>  
#include<algorithm>  
using namespace std;  
int main(){
	long int n;
	int cash25,cash50,cash100,flag,temp;
	while(scanf("%ld",&n)!=EOF){
		cash25=0;
		cash50=0;
		cash100=0;
		flag=1;
		while(n--){
			scanf("%d",&temp);
			if(temp==25){
				cash25++;
			}
			else if(temp==50){
				if(cash25>0){
					cash25--;
					cash50++;
				}
				else{
					flag=0;
				}
			}
			else if(temp==100){
				if(cash50>0&&cash25>0){
					cash50--;
					cash25--;
				}
				else if(cash25>2){
					cash25-=3;
				}
				else{
					flag=0;
				}
			}
		}
		if(flag==1){
			printf("YES\n");
		}
		else{
			printf("NO\n");
		}
	}
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值