The Festive Evening

本文描述了一场在甜王国举行的晚会中,如何确保每个入口都有足够的安保人员,防止未被邀请的客人进入。通过输入嘉宾数量及安保人员数量,判断是否在某个时刻存在未被保护的入口。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

                                B. The Festive Evening
                            time limit per test1 second
                            memory limit per test256 megabytes
                            inputstandard input
                            outputstandard output

It’s the end of July – the time when a festive evening is held at Jelly Castle! Guests from all over the kingdom gather here to discuss new trends in the world of confectionery. Yet some of the things discussed here are not supposed to be disclosed to the general public: the information can cause discord in the kingdom of Sweetland in case it turns out to reach the wrong hands. So it’s a necessity to not let any uninvited guests in.

There are 26 entrances in Jelly Castle, enumerated with uppercase English letters from A to Z. Because of security measures, each guest is known to be assigned an entrance he should enter the castle through. The door of each entrance is opened right before the first guest’s arrival and closed right after the arrival of the last guest that should enter the castle through this entrance. No two guests can enter the castle simultaneously.

For an entrance to be protected from possible intrusion, a candy guard should be assigned to it. There are k such guards in the castle, so if there are more than k opened doors, one of them is going to be left unguarded! Notice that a guard can’t leave his post until the door he is assigned to is closed.

Slastyona had a suspicion that there could be uninvited guests at the evening. She knows the order in which the invited guests entered the castle, and wants you to help her check whether there was a moment when more than k doors were opened.

Input
Two integers are given in the first string: the number of guests n and the number of guards k (1 ≤ n ≤ 106, 1 ≤ k ≤ 26).

In the second string, n uppercase English letters s1s2… sn are given, where si is the entrance used by the i-th guest.

Output
Output «YES» if at least one door was unguarded during some time, and «NO» otherwise.

You can output each letter in arbitrary case (upper or lower).

Examples
input
5 1
AABBB
output
NO
input
5 1
ABABB
output
YES
Note
In the first sample case, the door A is opened right before the first guest’s arrival and closed when the second guest enters the castle. The door B is opened right before the arrival of the third guest, and closed after the fifth one arrives. One guard can handle both doors, as the first one is closed before the second one is opened.

In the second sample case, the door B is opened before the second guest’s arrival, but the only guard can’t leave the door A unattended, as there is still one more guest that should enter the castle through this door.

当时把输入给注释了死活没找出错来,后来才发现,也是一个思维题,统计每个字母的个数,用的ascii码做的处理每一次都++,然后再循环里处理,当门是空的时候把一个保安给空出来b[i]相当于判重数组,操作一次把b[i]变为0

#include<iostream>
#include<cstring>
#include<string>
using namespace std;
char s[10000010];
int main()
{
    int n,k,cnt;
    int a[27],b[27];

    //while(cin>>n>>k)
    //{ 
    cin>>n>>k;
        cnt=0;
        for(int i=0;i<n;i++)
            cin>>s[i];
        memset(a,0,sizeof(a));
        memset(b,0,sizeof(b));
        for(int i=0;i<n;i++)
            a[s[i]-'A']++;
        int i;
        for(i=0;i<n;i++)
        {
            if(!b[s[i]-'A'])
            {
                cnt++;
                b[s[i]-'A']=1;
            }

            if(cnt>k)
            {
                cout<<"YES"<<endl;
                break;
            }
            a[s[i]-'A']--;
            if(!a[s[i]-'A'])
                cnt--;
        }
        if(i==n)
            cout<<"NO"<<endl;
    //}
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值