题解1

#Angry Students
It’s a walking tour day in SIS.Winter, so groups of students are visiting Torzhok. Streets of Torzhok are so narrow that students have to go in a row one after another.

Initially, some students are angry. Let’s describe a group of students by a string of capital letters “A” and “P”:

“A” corresponds to an angry student
“P” corresponds to a patient student
Such string describes the row from the last to the first student.

Every minute every angry student throws a snowball at the next student. Formally, if an angry student corresponds to the character with index in the string describing a group then they will throw a snowball at the student that corresponds to the character with index (students are given from the last to the first student). If the target student was not angry yet, they become angry. Even if the first (the rightmost in the string) student is angry, they don’t throw a snowball since there is no one in front of them.

Let’s look at the first example test. The row initially looks like this: PPAP. Then, after a minute the only single angry student will throw a snowball at the student in front of them, and they also become angry: PPAA. After that, no more students will become angry.

Your task is to help SIS.Winter teachers to determine the last moment a student becomes angry for every group.

Input
The first line contains a single integer — the number of groups of students (). The following lines contain descriptions of groups of students.

The description of the group starts with an integer () — the number of students in the group, followed by a string , consisting of letters “A” and “P”, which describes the -th group of students.

Output
For every group output single integer — the last moment a student becomes angry.

Examples
Input
1
4
PPAP
Output
1
Input
3
12
APPAPPPAPPPP
3
AAP
3
PPA
Output
4
1
0
Note
In the first test, after minute the state of students becomes PPAA. After that, no new angry students will appear.

In the second tets, state of students in the first group is:

after minute — AAPAAPPAAPPP
after minutes — AAAAAAPAAAPP
after minutes — AAAAAAAAAAAP
after minutes all students are angry
In the second group after minute, all students are angry.

这个题,错了好多次,最后才发现是大小写的问题……

#include<iostream>
using namespace std;
int main(){
    int n,m;
    cin>>m;
    for(int i=1;i<=m;i++){
            cin>>n;
            char s[102];
            int a[102],per;
            for(int i=1;i<=n;i++){
                cin>>s[i];
                a[i]=0;
            }
            for(int i=1;i<=n;i++){
                    if(s[i]=='P')
                    continue;
                    else
                        for(int j=1;j<=n-i;j++){
                    if(s[i+j]=='P')
                        a[i]++;
                        else
                            break;
                        }
            }
            per=a[1];
            for(int i=2;i<=n;i++){
                if(per<a[i])
                    per=a[i];
            }
            cout<<per<<endl;
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值