1003. 我要通过!(20)
“答案正确”是自动判题系统给出的最令人欢喜的回复。本题属于PAT的“答案正确”大派送 —— 只要读入的字符串满足下列条件,系统就输出“答案正确”,否则输出“答案错误”。
得到“答案正确”的条件是:
1. 字符串中必须仅有P, A, T这三种字符,不可以包含其它字符;
2. 任意形如 xPATx 的字符串都可以获得“答案正确”,其中 x 或者是空字符串,或者是仅由字母 A 组成的字符串;
3. 如果 aPbTc 是正确的,那么 aPbATca 也是正确的,其中 a, b, c 均或者是空字符串,或者是仅由字母 A 组成的字符串。
输入格式: 每个测试输入包含1个测试用例。第1行给出一个自然数n (<10),是需要检测的字符串个数。接下来每个字符串占一行,字符串长度不超过100,且不包含空格。
输出格式:每个字符串的检测结果占一行,如果该字符串可以获得“答案正确”,则输出YES,否则输出NO。
输入样例:8 PAT PAAT AAPATAA AAPAATAAAA xPATx PT Whatever APAAATAA输出样例:
YES YES YES YES NO NO NO NO
//题目的意思表达不明确,输入的限制"aPbTc"
//一、a、b、c只由A构成,其中a、c可以为空,b至少包含一个A
//二、len(a)*len(b) == len(c)
#include <iostream>
#include <stdio.h>
#include <string>
#include <vector>
using namespace std;
int main()
{
vector<string> output;
int num;
num = getchar()-'0';
getchar();
string judge(vector<char>);
for(vector<char>::size_type i = 0; i != num; i++)
{
char temp;
vector<char> input;
temp = getchar();
while(temp != '\n')
{
input.push_back(temp);
temp = getchar();
}
output.push_back(judge(input));
}
for(vector<char>::size_type i = 0; i != output.size(); i++)
{
cout << output[i] << endl;
}
system("pause");
return 0;
}
string judge(vector<char> input)
{
vector<char>::size_type Pindex,Tindex;
int countA = 0, countP = 0, countT = 0;
for(vector<char>::size_type index = 0; index != input.size(); index++)
{
if ('P' == input[index])
{
Pindex = index;
countP++;
}
if ('A' == input[index])
{
countA++;
}
if ('T' == input[index])
{
Tindex = index;
countT++;
}
}
if((input.size() != countP+countA+countT)||(1 != countP)||(1 != countT)||(2 > Tindex - Pindex))
return "NO";
if( Pindex*(Tindex - Pindex - 1) != (input.size() - Tindex - 1) )
return "NO";
return "YES";
}