noip模拟赛 卖书

Posted zbtrs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了noip模拟赛 卖书相关的知识,希望对你有一定的参考价值。

分析:模拟题,只是有几个地方需要注意一下:第一个人必须支付5元,找零15元可以找一张10元一张5元,也可以找3张5元.

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>

int n, t, a[4];

int main()
{
    scanf("%d", &n);
    for (int i = 1; i <= n; i++)
    {
        scanf("%d", &t);
        if (i == 1)
        {
            if (t != 5)
            {
                printf("NO\\n");
                return 0;
            }
            a[1]++;
        }
        else
        {
            int p = t - 5;
            if (p == 5)
                a[1]--;
            if (p == 15)
            {
                if (a[2] >= 1)
                    a[1]--, a[2]--;
                else
                    a[1] -= 3;
            }
            if (a[1] < 0 || a[2] < 0)
            {
                printf("NO\\n");
                return 0;
            }
            if (t == 5)
                a[1]++;
            if (t == 10)
                a[2]++;
        }
    }
    printf("YES\\n");

    return 0;
}

 

以上是关于noip模拟赛 卖书的主要内容,如果未能解决你的问题,请参考以下文章

NOIp模拟赛binary

NOIP模拟赛16

NOIp模拟赛value

2017 10.25 NOIP模拟赛

ztz11的noip模拟赛T3:评分系统

XJOI NOIP模拟题1