递推计算PAT个数
1. 原文
The string APPAPT
contains two PAT
‘s as substrings. The first one is formed by the 2nd, the 4th, and the 6th characters, and the second one is formed by the 3rd, the 4th, and the 6th characters.
Now given any string, you are supposed to tell the number of PAT
‘s contained in the string.
Input Specification:
Each input file contains one test case. For each case, there is only one line giving a string of no more than 105characters containing only P
, A
, or T
.
output Specification:
For each test case, print in one line the number of PAT
‘s contained in the string. Since the result may be a huge number, you only have to output the result moded by 1000000007.
Sample Input:
1 | APPAPT |
Sample output:
1 | 2 |
2. 解析
统计每个字符所在位置之前的P 个数,leftP[i]++;
从后到前,统计T 个数,righT++;
当字符为A时,统计个数ans=(ans+leftP[i]*righT)%mod;
3. AC代码
1 |
|