首页 > 其他 > 详细

codeforces 603A Alternative Thinking

时间:2015-12-03 22:54:45      阅读:408      评论:0      收藏:0      [点我收藏+]

A. Alternative Thinking

 

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 test(s)
input
8
10000011
output
5
input
2
01
output
2
Note

In the first sample, Kevin can flip the bolded substring ‘10000011‘ and turn his string into ‘10011011‘, which has an alternating subsequence of length 5: ‘10011011‘.

In the second sample, Kevin can flip the entire string and still have the same score.

 

 1 #include<cstdio>
 2 #include<iostream>
 3 #include<vector>
 4 #include<cmath>
 5 #include<queue>
 6 #include<string>
 7 #include<map>
 8 #include<cstring>
 9 #include<algorithm>
10 using namespace std;
11 typedef long long ll;
12 typedef unsigned long long ull;
13 const int maxn=1e5+5;
14 char s[maxn];
15 int main()
16 {
17     int n;
18     scanf("%d%s",&n,s);
19     int cnt1=0,cnt2=1;
20     for(int i=1;i<n;i++)
21     {
22         if(s[i]==s[i-1])
23             cnt1++;
24         else
25             cnt2++;
26     }
27     printf("%d\n",cnt2+min(cnt1,2));
28     return 0;
29 }

 

codeforces 603A Alternative Thinking

原文:http://www.cnblogs.com/homura/p/5017748.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!