Codeforces Round #334 (Div. 2) C. Alternative Thinking 贪心

C. Alternative Thinking

Time Limit: 20 Sec

Memory Limit: 256 MB

题目连接

http://codeforces.com/contest/604/problem/C

Description

Kevin has just recevied his disappointing results on the USA Identification of Cows Olympiad (USAICO) in the form of a binary string of length n. Each character of Kevin's string represents Kevin's score on one of the n questions of the olympiad—'1' for a correctly identified cow and '0' otherwise.

However, all is not lost. Kevin is a big proponent of alternative thinking and believes that his score, instead of being the sum of his points, should be the length of the longest alternating subsequence of his string. Here, we define an alternating subsequence of a string as anot-necessarily contiguous subsequence where no two consecutive elements are equal. For example, {0, 1, 0, 1}, {1, 0, 1}, and{1, 0, 1, 0} are alternating sequences, while {1, 0, 0} and {0, 1, 0, 1, 1} are not.

Kevin, being the sneaky little puffball that he is, is willing to hack into the USAICO databases to improve his score. In order to be subtle, he decides that he will flip exactly one substring—that is, take a contiguous non-empty substring of his score and change all '0's in that substring to '1's and vice versa. After such an operation, Kevin wants to know the length of the longest possible alternating subsequence that his string could have.

Input

The first line contains the number of questions on the olympiad n (1 ≤ n ≤ 100 000).

The following line contains a binary string of length n representing Kevin's results on the USAICO.

Output

Output a single integer, the length of the longest possible alternating subsequence that Kevin can create in his string after flipping a single substring.

Sample Input

8
10000011

Sample Output

5

HINT

 

题意

给你一个字符串,你可以使得一个连续的01串翻转过来,然后问你最长的01相隔的子序列(不连续)的长度为多少

题解:

答案一定是max(n,maxlen+2)

maxlen是原本串的最长的01串长度

代码:

#include<iostream>
#include<stdio.h>
using namespace std;

string s;
int main()
{
    int n;
    scanf("%d",&n);
    cin>>s;
    if(n==2)
    {
        printf("2\n");
        return 0;
    }
    if(n==3)
    {
        printf("3\n");
        return 0;
    }
    int flag = 0;
    for(int i=0;i<s.size()-1;i++)
    {
        if(s[i]==s[i+1])
            flag = 1;
    }
    if(flag == 0)
    {
        printf("%d\n",n);
        return 0;
    }
    int ans = 1;
    for(int i=0;i<s.size()-1;i++)
    {
        if(s[i]!=s[i+1])
            ans++;
    }
    printf("%d\n",min(ans+2,n));
}

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值