概述
There are n 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 n (1 ≤ n ≤ 50) — the number of stones on the table.
The next line contains string s, which represents the colors of the stones. We'll consider the stones in the row numbered from 1 to nfrom left to right. Then the i-th character s equals "R", if the i-th stone is red, "G", if it's green and "B", if it's blue.
Print a single integer — the answer to the problem.
3 RRG
1
5 RRRRR
4
4 BRBG
0
解题思路:水题,暴力扫描。
以下为解题代码(java实现)
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
scanner.nextLine();
String str = scanner.nextLine();
char[] ch = str.toCharArray();
int counts = 0;
for(int i = 0;i < ch.length-1;i++){
if(ch[i] == ch[i+1]){
counts++;
}
}
System.out.println(counts);
scanner.close();
}
}
最后
以上就是昏睡花瓣为你收集整理的Codeforces刷题之路——266A Stones on the Table的全部内容,希望文章能够帮你解决Codeforces刷题之路——266A Stones on the Table所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复