CF266A.Stones on the Table

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There are nn stones on the table in a row, each of them can be red, green or blue. Count the minimum number of stones to take from the table so that any two neighboring stones had different colors. Stones in a row are considered neighboring if there are no other stones between them.

输入格式

The first line contains integer nn (1<=n<=50)(1<=n<=50) — the number of stones on the table.

The next line contains string ss , which represents the colors of the stones. We'll consider the stones in the row numbered from 11 to nn from left to right. Then the ii -th character ss equals "R", if the ii -th stone is red, "G", if it's green and "B", if it's blue.

输出格式

Print a single integer — the answer to the problem.

输入输出样例

  • 输入#1

    3
    RRG
    

    输出#1

    1
    
  • 输入#2

    5
    RRRRR
    

    输出#2

    4
    
  • 输入#3

    4
    BRBG
    

    输出#3

    0
    
首页