Codeforces Round #442 (Div. 2) A. Alex and broken contest,B - Nikita and string

A. Alex and broken contest
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
One day Alex was creating a contest about his friends, but accidentally deleted it. Fortunately, all the problems were saved, but now he needs to find them among other problems.

But there are too many problems, to do it manually. Alex asks you to write a program, which will determine if a problem is from this contest by its name.

It is known, that problem is from this contest if and only if its name contains one of Alex’s friends’ name exactly once. His friends’ names are “Danil”, “Olya”, “Slava”, “Ann” and “Nikita”.

Names are case sensitive.

Input
The only line contains string from lowercase and uppercase letters and “_” symbols of length, not more than 100 — the name of the problem.

Output
Print “YES”, if problem is from this contest, and “NO” otherwise.

Examples
input
Alex_and_broken_contest
output
NO
input
NikitaAndString
output
YES
input
Danil_and_Olya
output
NO
translation :
那几个名字所有出现过的次数为1输出YES 否则NO;
解 模拟;

#include<string>
#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
    string s;
    while (cin>>s)
    {
        int sum = 0;
        int t = s.find("Danil");
        if (t != string::npos)
        {
            sum++;
            if (s.find("Danil",t+1) != string::npos)
                sum++;
        }
        t = s.find("Olya");
        if (t != string::npos)
        {
            sum++;
            if (s.find("Olya", t + 1) != string::npos)
                sum++;
        }
        t = s.find("Slava");
        if (t != string::npos)
        {
            sum++;
            if (s.find("Slava", t + 1) != string::npos)
                sum++;
        }
        t = s.find("Ann");
        if (t != string::npos)
        {
            sum++;
            if (s.find("Ann", t + 1) != string::npos)
                sum++;
        }
        t = s.find("Nikita");
        if (t != string::npos)
        {
            sum++;
            if (s.find("Nikita", t + 1) != string::npos)
                sum++;
        }
    //  cout << sum << endl;
        if (sum == 1)
            puts("YES");
        else puts("NO");
    }
    return 0;
}

B. Nikita and string
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
One day Nikita found the string containing letters “a” and “b” only.

Nikita thinks that string is beautiful if it can be cut into 3 strings (possibly empty) without changing the order of the letters, where the 1-st and the 3-rd one contain only letters “a” and the 2-nd contains only letters “b”.

Nikita wants to make the string beautiful by removing some (possibly none) of its characters, but without changing their order. What is the maximum length of the string he can get?

Input
The first line contains a non-empty string of length not greater than 5 000 containing only lowercase English letters “a” and “b”.

Output
Print a single integer — the maximum possible size of beautiful string Nikita can get.

Examples
input
abba
output
4
input
bab
output
2
Note
It the first sample the string is already beautiful.

In the second sample he needs to delete one of “b” to make it beautiful.

translation;
给你只有a ,b的串,将串分为3部分,可以为空,第一,第三部分只能由’a’组成,中间的只能为’b’,可以删除任意字节,求解最大长度;
ans
情况分为 a ,ab, ba, aba, ba可以忽略因为 如果前面有a是一定要加上,所以还是aba的情况;

#include<bits/stdc++.h>
using namespace std;
int main()
{
    char s[5555];
    while(cin>>s)
    {
        int dp[3][5001]={0},i,j;
        int len=strlen(s);
        for(i=0;i<len;i++)
        {
            dp[0][i+1]=dp[0][i]+(s[i]=='a');
            dp[1][i+1]=max(dp[0][i],dp[1][i])+(s[i]=='b');
            dp[2][i+1]=max(max(dp[0][i],dp[1][i]),dp[2][i])+(s[i]=='a');

        }
        cout<<max(max(dp[0][len],dp[1][len]),dp[2][len])<<endl;
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值