PTA甲级——1093
1093 Count PAT’s
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 105 characters 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 |
|
Sample Output:
1 |
|
思路
大致题意:寻找子序列为
PAT
的数量,这里的子序列可以不是连续的,看案例可知。 思路:就是用2个前缀和来分别存字符
P
在各个位置从前往后看的数量以及T
在各个位置从后往前看的数量就ok了。
代码
1 |
|