博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT 1093 Count PAT's[比较]
阅读量:5735 次
发布时间:2019-06-18

本文共 1413 字,大约阅读时间需要 4 分钟。

1093 Count PAT's (25 分)

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 PA, 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:

APPAPT

Sample Output:

2

 题目大意:给出一个字符串,判断其中有多少个PAT串,P A T之间可以有其他字符隔开。

//只要计算每个出现的A之前出现的P的总数,和A之后出现的T的总数,两者相乘,对所有的A的结果相加即可。

#include 
#include
#include
#include
#include
#include
#include
using namespace std;int cntP[100010];int main(){ string s; cin>>s; int ct=0;//首先在字符串里找出所有A的位置。 vector
posA; posA.push_back(0); int pos=0; while(s.find("A",pos)!=string::npos){ pos=s.find("A",pos); posA.push_back(pos); pos++; } //vector
cntP(posA.size()); int index=1;//开始计算P的数量 for(int i=0;i

 

//我写成了这个样子,但是感觉还是不行的。写不下去了。

下面是柳神的解答,真的太厉害了!!!

//真是恍然大悟的感觉。学习了!

转载于:https://www.cnblogs.com/BlueBlueSea/p/9941620.html

你可能感兴趣的文章
数据结构与算法——常用排序算法及其Java实现
查看>>
你所不知的Webpack-多种配置方法
查看>>
React.js 集成 Kotlin Spring Boot 开发 Web 应用实例详解
查看>>
《图解HTTP》学习笔记(四):返回结果的HTTP状态码
查看>>
swift 主题库
查看>>
翻译连载 | 附录 B: 谦虚的 Monad-《JavaScript轻量级函数式编程》 |《你不知道的JS》姊妹篇...
查看>>
Spring 学习笔记(一)Spring核心容器
查看>>
webpack+typescript+threejs+vscode开发
查看>>
python读excel写入mysql小工具
查看>>
Node模块--text-table
查看>>
如何学习区块链
查看>>
搜索问题的办法
查看>>
微信分销系统商城营销5大重点
查看>>
求职准备 - 收藏集 - 掘金
查看>>
【Java】类的循环初始化是否会引起死锁?
查看>>
htm5新特性(转)
查看>>
前端面试之Css篇
查看>>
Linux-Centos启动流程
查看>>
php 设计模式
查看>>
后端技术精选 - 收藏集 - 掘金
查看>>