首页 > 其他 > 详细

Codeforce 719B

时间:2019-02-24 23:28:25      阅读:176      评论:0      收藏:0      [点我收藏+]

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 1
  5
  rbbrr
  Output 1
  1
 
  Input 2
  5
  bbbbb
  Output 2
  2
 
  Input 3
  3
  rbr
  Output 3
  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.

 

 

 

 

 

 

Codeforce 719B

原文:https://www.cnblogs.com/fangxiaoqi/p/10428667.html

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