A. Alternative Thinking
time limit per test

2 seconds

memory limit per test

256 megabytes

 

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 a not-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.

http://codeforces.com/problemset/problem/603/A

题意:给你一串01串。

然后你可以选其中的一个连续子串,然后反转一下,就是0变1,1变0,然后求01相互间个的子序列最长是多少。

如果你选一串子串,反转,改变的只是子串两端的关系,子串内部的结构不会改变,比如1001001,变为0110110,那么内部的01还是原来的个数,

那么好了,改变前后01最多增加2个,可以假设原来已经成01或10 的不变(贪心原则)那么只要把那些11,和00,的改变,

计算前后两个相等的个数,然后和2比较取小的就行,再加上原来的01个数,就行了.

 1 #include<stdio.h>
2 #include<algorithm>
3 #include<stdlib.h>
4 #include<iostream>
5 using namespace std;
6 char a[100005];
7 int main(void)
8 {
9 int i,j,k,p,q;
10 while(scanf("%d",&k)!=EOF)
11 {
12 scanf("%s",a);
13 int sum=0;
14 int cnt=0;
15 for(i=1; a[i]!='\0'; i++)
16 {
17 if(a[i]==a[i-1])
18 {
19 sum++;
20 }
21 else cnt++;
22
23 }
24 int r=min(2,sum);
25 printf("%d\n",cnt+r+1);
26
27 }
28 return 0;
29
30 }

最新文章

  1. fallacies of distributed computing
  2. bootstrap 重写JS的alert、comfirm函数
  3. Admob(6.12.x)符号未定义错误的解决方法(IOS)
  4. HttpClient(4.3.5) - HTTP Execution Context
  5. debian 学习记录-4 -关于linux -2
  6. Facebook Asynchronous Layout and Rending
  7. kotlin web开发教程【一】从零搭建kotlin与spring boot开发环境
  8. break和continue的简单介绍
  9. 记录一次DataTable排序的问题
  10. StanfordPOSTagger的用法
  11. Java ——基础语法
  12. linux编程之信号量
  13. C#6.0语言规范(十六) 异常
  14. PHP:WampServer下如何安装多个版本的PHP、mysql、apache
  15. BZOJ5093 [Lydsy1711月赛]图的价值 【第二类斯特林数 + NTT】
  16. Linux下使用rsyslog部署日志服务器 &amp;&amp; 记录history并发送到rsyslog服务器
  17. LA 4253 箭术(二分枚举)
  18. poj 3744 概率dp 快速幂 注意排序 难度:2
  19. iframe中子父窗口互调的js方法
  20. python运算符一些注意项

热门文章

  1. Docker Swarm的命令
  2. 打造基于 PostgreSQL/openGauss 的分布式数据库解决方案
  3. 【Redis】Sentinel 哨兵模式
  4. Swift-技巧(十一)重写运算符
  5. Spark基础:(四)Spark 数据读取与保存
  6. PLSQL导出oracle表结构和数据
  7. Linux学习 - IP地址配置
  8. linux查询健康状态,如何直观的判断你的Linux系统是否健康
  9. 2.使用Lucene开发自己的搜索引擎–indexer索引程序中基本类介绍
  10. java 整型