前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Codeforces 719B Anatoly and Cockroaches

Codeforces 719B Anatoly and Cockroaches

作者头像
Angel_Kitty
发布2018-04-08 11:39:27
6900
发布2018-04-08 11:39:27
举报

B. Anatoly and Cockroaches

time limit per test:1 second

memory limit per test:256 megabytes

input:standard input

output:standard output

Anatoly lives in the university dorm as many other students do. As you know, cockroaches are also living there together with students. Cockroaches might be of two colors: black and red. There are n cockroaches living in Anatoly's room.

Anatoly just made all his cockroaches to form a single line. As he is a perfectionist, he would like the colors of cockroaches in the line to alternate. He has a can of black paint and a can of red paint. In one turn he can either swap any two cockroaches, or take any single cockroach and change it's color.

Help Anatoly find out the minimum number of turns he needs to make the colors of cockroaches in the line alternate.

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 100 000) — the number of cockroaches.

The second line contains a string of length n, consisting of characters 'b' and 'r' that denote black cockroach and red cockroach respectively.

Output

Print one integer — the minimum number of moves Anatoly has to perform in order to make the colors of cockroaches in the line to alternate.

Examples

Input

代码语言:javascript
复制
5

rbbrr

Output

代码语言:javascript
复制
1

Input

代码语言:javascript
复制
5

bbbbb

Output

代码语言:javascript
复制
2

Input

代码语言:javascript
复制
3

rbr

Output

代码语言:javascript
复制
0

Note

In the first sample, Anatoly has to swap third and fourth cockroaches. He needs 1 turn to do this.

In the second sample, the optimum answer is to paint the second and the fourth cockroaches red. This requires 2 turns.

In the third sample, the colors of cockroaches in the line are alternating already, thus the answer is 0.

题目链接:http://codeforces.com/problemset/problem/719/B

分析:细想只有两种模式,一种brbrbr... 另一种rbrbrb... 只需要统计这两种模式下,需要的两种操作数中最小的一个,即是答案。

下面给出AC代码:

代码语言:javascript
复制
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 const int MAXN = 100005;
 4 char a[MAXN];
 5 int main()
 6 {
 7     int n;
 8     while(cin>>n)
 9     {
10         scanf("%s",a);
11         int m = 0;
12         int t=0;
13         int u=0;
14         int v=0;
15         for(int i=0; i<n; i++)
16         {
17             if(i%2==0)
18             {
19                 if(a[i]=='r')
20                     m++;
21                 if(a[i]=='b')
22                     t++;
23             }
24             else
25             {
26                 if(a[i]=='r')
27                     u++;
28                 if(a[i]=='b')
29                     v++;
30             }
31         }
32         int x=max(t,u);
33         int y=max(m,v);
34         int z=min(x,y);
35         printf("%d\n",z);
36     }
37     return 0;
38 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-02-19 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档