概述
点击打开题目
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 n from 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 不多说就是找有几个相邻的是不同的: 代码:#include <iostream> #include<stdio.h> using namespace std; int main() { int t,ans,i; char c[51]; while(cin>>t) { cin>>c; ans=0; for(i=0;i<(t-1);i++) { if(c[i]!=c[i+1]) ans++; } cout<<(t-1-ans)<<endl; } return 0; }
最后
以上就是谨慎毛巾为你收集整理的codeforces 266A Stones on the Table(模拟水题)的全部内容,希望文章能够帮你解决codeforces 266A Stones on the Table(模拟水题)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复