Hello XTCPC

Hello XTCPC
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1207 Accepted Submission(s): 337

Problem Description
You have a string of lowercase letters.You need to find as many sequence “xtCpc” as possible.But letters in the same position can only be used once。

Input
The input file contains two lines.

The first line is an integer n show the length of string.(1≤n≤2×105)

The second line is a string of length n consisting of lowercase letters and uppercase letters.

Output
The input file contains an integer show the maximum number of different subsequences found.

Sample Input
10
xtCxtCpcpc

Sample Output
2

有顺序要求
Source
2019CCPC湖南全国邀请赛(广东省赛、江苏省赛)重现赛

Recommend
liuyiding

#include<stdio.h>
#include<string.h>
char s[200010];
int  b[200010];
int main()
{
    int i,n,a1,a2,a3,a4,a5,len,count;
    while(~scanf("%d",&n))
    {
        a1=a2=a3=a4=a5=0;
        scanf("%s",s);
        len=strlen(s);
        count=0;
        for(i=0;i<len;i++)
        {
            if(s[i]=='x')
                a1++;
            if(s[i]=='t'&&a2<a1)// i之前的字母出现的个数要比i个数多
                a2++;
            if(s[i]=='C'&&a3<a2)
                a3++;
            if(s[i]=='p'&&a4<a3)
                a4++;
            if(s[i]=='c'&&a5<a4)
                a5++;
            if(a1&&a2&&a3&&a4&&a5)
            {
                count++;
                a1--;
                a2--;
                a3--;
                a4--;
                a5--;
            }
        }
        printf("%d\n",count);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值