m_0001

牛牛喜欢彩色的东西,尤其是彩色的瓷砖。牛牛的房间内铺有L块正方形瓷砖。每块砖的颜色有四种可能:红、绿、蓝、黄。给定一个字符串S, 如果S的第i个字符是'R', 'G', 'B'或'Y',那么第i块瓷砖的颜色就分别是红、绿、蓝或者黄。
牛牛决定换掉一些瓷砖的颜色,使得相邻两块瓷砖的颜色均不相同。请帮牛牛计算他最少需要换掉的瓷砖数量。 

输入描述:

输入包括一行,一个字符串S,字符串长度length(1 ≤ length ≤ 10),字符串中每个字符串都是'R', 'G', 'B'或者'Y'。

输出描述:

输出一个整数,表示牛牛最少需要换掉的瓷砖数量

输入例子1:

RRRRRR

输出例子1:

3
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		 Scanner scan = new Scanner(System.in);
	     String str = scan.nextLine();
	     int strLen = str.length();

	     int i = strLen - 1;
	     int counter = 0;
	     for(; i >= 0; i -= 1){
	    	if (i == 0) {
				break;
			}else if (str.charAt(i) == str.charAt(i-1)) {
	    		counter++;
                i -= 1;
			}
	     }

	     System.out.println(counter);
	}
}

猜你喜欢

转载自my.oschina.net/MasterLi161307040026/blog/1630016