答案正确”是自动判题系统给出的最令人欢喜的回复。本题属于 PAT 的“答案正确”大派送 —— 只要读入的字符串满足下列条件,系统就输出“答案正确”,否则输出“答案错误”。

得到“答案正确”的条件是:

  1. 字符串中必须仅有 PAT这三种字符,不可以包含其它字符;
  2. 任意形如 xPATx 的字符串都可以获得“答案正确”,其中 x 或者是空字符串,或者是仅由字母 A 组成的字符串;
  3. 如果 aPbTc 是正确的,那么 aPbATca 也是正确的,其中 abc 均或者是空字符串,或者是仅由字母 A 组成的字符串。

现在就请你为 PAT 写一个自动裁判程序,判定哪些字符串是可以获得“答案正确”的。

输入格式:

每个测试输入包含 1 个测试用例。第 1 行给出一个正整数 n (<10),是需要检测的字符串个数。接下来每个字符串占一行,字符串长度不超过 100,且不包含空格。

输出格式:

每个字符串的检测结果占一行,如果该字符串可以获得“答案正确”,则输出 YES,否则输出 NO

输入样例:

  1. 8
  2. PAT
  3. PAAT
  4. AAPATAA
  5. AAPAATAAAA
  6. xPATx
  7. PT
  8. Whatever
  9. APAAATAA

输出样例:

  1. YES
  2. YES
  3. YES
  4. YES
  5. NO
  6. NO
  7. NO
  8. NO

代码

这题还没整明白,0号和3号测试点没通过。。。。

  1. #include<cstdio>
  2. #include<cstring>
  3. bool judge(char* input) {
  4. bool flagP, flagT, flagA;
  5. for(int i = 0; i < strlen(input); i++) {
  6. if(input[i] == 'P')
  7. flagP = true;
  8. else if(input[i] == 'T')
  9. flagT = true;
  10. else if(input[i] == 'A')
  11. flagA = true;
  12. else
  13. return false;
  14. }
  15. // Make sure the characters only contain 'P' 'T' 'A'
  16. if(flagP && flagT && flagA) {
  17. // Find the position of 'P' and 'T'
  18. int positionT, positionP;
  19. for(int i = 0; i < strlen(input); i++) {
  20. if(input[i] == 'P') {
  21. positionP = i;
  22. break;
  23. }
  24. }
  25. for(int i = strlen(input) - 1; i >= 0; i--) {
  26. if(input[i] == 'T') {
  27. positionT = i;
  28. break;
  29. }
  30. }
  31. // If something else hides between 'P' and 'T'
  32. for(int i = positionP + 1; i < positionT; i++) {
  33. if(input[i] != 'A') {
  34. return false;
  35. }
  36. }
  37. int countAbeforeP = positionP;
  38. int countAbetweenPT = positionT - positionP - 1;
  39. int countAafterT = strlen(input) - positionT - 1;
  40. if(countAbeforeP * countAbetweenPT == countAafterT) {
  41. return true;
  42. }
  43. return false;
  44. }
  45. return false;
  46. }
  47. int main() {
  48. int number;
  49. scanf("%d", &number);
  50. char input[101];
  51. while(number) {
  52. scanf("%s", input);
  53. if(judge(input)) {
  54. printf("YES\n");
  55. }
  56. else {
  57. printf("NO\n");
  58. }
  59. number--;
  60. }
  61. return 0;
  62. }