首页 > 试题广场 >

Count PAT's (25)

[编程题]Count PAT's (25)
  • 热度指数:2964 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解
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.

输入描述:
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.


输出描述:
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.
示例1

输入

APPAPT

输出

2
头像 abdd_
发表于 2021-07-15 11:51:02
题目: count PAT's输入一串字符,其中字符集为 {P,A,T}, 求解字符中包含多少个PAT子序列。例如:PATT 包含2个PAT 子序列, PAATT包含4个PAT子序列。 问题分析: 对于字符串s[n], 考虑某位置s[i],相对于s[i-1]增加了s[i],考虑增加s[i]对PAT子 展开全文

问题信息

难度:
17条回答 7564浏览

热门推荐

通过挑战的用户