• 华中农业大学第五届程序设计大赛网络同步赛-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 }
  • 相关阅读:
    Dev GridControl 小结3
    一个web应用的诞生(9)--回到用户
    一个web应用的诞生(8)--博文发布
    一个web应用的诞生(7)--结构调整
    一个web应用的诞生(6)--用户账户
    一个web应用的诞生(5)--数据表单
    一个web应用的诞生(4)--数据存储
    一个web应用的诞生(3)--美化一下
    一个web应用的诞生(2)--使用模板
    一个web应用的诞生(1)--初识flask
  • 原文地址:https://www.cnblogs.com/Penn000/p/6756257.html
Copyright © 2020-2023  润新知