• 华中农业大学第五届程序设计大赛网络同步赛-L


    L.Happiness

    Chicken brother is very happy today, because he attained N pieces of biscuits whose tastes are A or B. These biscuits are put into a box. Now, he can only take out one piece of biscuit from the box one time. As we all know, chicken brother is a creative man. He wants to put an A biscuit and a B biscuit together and eat them. If he take out an A biscuit from the box and then he take out a B biscuit continuously, he can put them together and eat happily. Chicken brother’s happiness will plus one when he eat A and B biscuit together one time. Now, you are given the arrangement of the biscuits in the box(from top to bottom) ,please output the happiness of Chicken Brother when he take out all biscuit from the box.

    Input Description

    The first line is an integer indicates the number of test cases. In each case, there is one line includes a string consists of characters ‘A’ and ‘B’. The length of string is not more than 1000000.

    Output Description

    For each test case: The first line output “Case #k:", k indicates the case number. The second line output the answer.

    Sample Input

    1

    ABABBBA

    Sample Output

    Case #1:

    2

     1 #include <cstdio>
     2 #include <cstring>
     3 #include <iostream>
     4 #include <algorithm>
     5 
     6 using namespace std;
     7 
     8 int main()
     9 {
    10     int T;
    11     string str;
    12     cin>>T;
    13     for(int kase = 1; kase <= T; kase++)
    14     {
    15         cin>>str;
    16         int len = str.length(), ans = 0;
    17         for(int i = 0; i < len-1; i++)
    18             if(str[i] == 'A' && str[i+1] == 'B')
    19                   ans++;
    20         cout<<"Case #"<<kase<<":"<<endl;
    21         cout<<ans<<endl;
    22     }
    23 
    24     return 0;
    25 }
  • 相关阅读:
    深究递归和迭代的区别、联系、优缺点及实例对比
    提高Python运行效率的六个窍门
    C++设计模式——单例模式
    使用Python的turtle库实现七段数码管绘制
    Python 死循环和嵌套循环
    Python 随机数 random
    更改 pandas dataframe 中两列的位置
    Pandas中DataFrame修改列名
    MM 算法与 EM算法概述
    机器学习中的训练集、验证集和测试集
  • 原文地址:https://www.cnblogs.com/Penn000/p/6756257.html
Copyright © 2020-2023  润新知