1003 我要通过!

题目

  判断字符串是否符合给定的规则。更多内容点击标题。

参考博客

分析

  规律:num_a * num_b = num_c。字符串a中字母A的个数乘以字符串b中字母A的个数等于字符串c中字母A的个数。

代码

/**
* Score 20
* Run Time 71ms
* @author wowpH
* @version 2.1
*/
package problemsets.cn.pintia.wowph.t1003.v2; import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader; public class Main {
/**
* Save n strings.
*/
private static String[] str;
/**
* The number of strings in a test case.
*/
private static int n; /**
* Custom input class.
*
* @author wowpH
*/
private static class Scanner {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); /**
* @return The next token.
*/
public String next() {
String x = null;
try {
x = br.readLine();
} catch (IOException e) {
System.out.println("Error reading input stream.");
}
return x;
} /**
* @return The <tt>int</tt> scanned from the input.
*/
public int nextInt() {
int x = 0;
try {
x = Integer.parseInt(next());
} catch (NumberFormatException e) {
System.out.println("Error converting String to Integer.");
}
return x;
}
} /**
* Enter the number of strings and an array of strings.
*/
private static void input() {
Scanner sc = new Scanner();
n = sc.nextInt();
str = new String[n]; // 保存字符串
for (int i = 0; i < n; i++) {
str[i] = sc.next();
}
} /**
* Determines whether the string with <tt>index</tt> in the string array
* <tt>str</tt> is correct.
*
* @param index 字符串数组的下标,指向当前需要判断的字符串
* @return <tt>true</tt> 如果字符串正确
*/
private static boolean judge(int index) {
int numP, numT, numOther; // 'P'的个数,'T'的个数,除了PAT以外的字符的个数
numP = numT = numOther = 0;
char[] s = str[index].toCharArray(); // 当前字符串
int len = s.length; // 长度
int indexP = 0, indexT = 0; // 'P'的下标,'T'的下标
// 统计字符的个数,不用统计'A'的个数
for (int i = 0; i < len; i++) {
if ('P' == s[i]) {
numP++;
indexP = i;
} else if ('T' == s[i]) {
numT++;
indexT = i;
} else if ('A' != s[i]) {
numOther++;
}
}
if (1 != numP || 1 != numT || 0 != numOther || indexT - indexP <= 1) {
return false;
}
// 核心代码
if (indexP * (indexT - indexP - 1) != (len - indexT - 1)) {
return false;
}
return true;
} public static void main(String[] args) {
input(); // 输入
for (int i = 0; i < n; i++) {
if (judge(i)) {
System.out.println("YES"); // 正确
} else {
System.out.println("NO"); // 错误
}
}
} }

补充

  • 字母P和字母T的个数都为1。
  • 不能有其他字母。
  • 字母P和字母T之间至少有1个字母A

备注

  刚来PAT没什么经验。这个居然不是多组输入。而且还是一次性读完n个字符串再一次性输出。我还以为是读取一个字符串数出一个结果。

PAT(B)1003 我要通过!(Java)的更多相关文章

  1. PAT甲级1003. Emergency

    PAT甲级1003. Emergency 题意: 作为一个城市的紧急救援队长,你将得到一个你所在国家的特别地图.该地图显示了几条分散的城市,连接着一些道路.每个城市的救援队数量和任何一对城市之间的每条 ...

  2. PAT 乙级 1003

    题目 题目地址:PAT 乙级 1003 题解 规律观察题,本题的关键在于把题读懂,同时还有几个比较容易疏忽的地方需要注意:总之这道题要考虑的东西更多,细节上也要特别注意: 规律:“如果 aPbTc 是 ...

  3. 图论 - PAT甲级 1003 Emergency C++

    PAT甲级 1003 Emergency C++ As an emergency rescue team leader of a city, you are given a special map o ...

  4. PAT(B) 1021 个位数统计(Java)

    题目链接:1021 个位数统计 (15 point(s)) 代码 /** * Score 15 * Run Time 93ms * @author wowpH * @version 1.0 */ im ...

  5. PAT(B) 1019 数字黑洞(Java)

    题目链接:1019 数字黑洞 (20 point(s)) 分析 输入正整数n后,将n转成int型数组nArr[4] 用Arrays.sort(int[] a)方法将数组nArr非递减排序 很显然,非递 ...

  6. PAT 乙级 1003.我要通过! C++/Java

    1003 我要通过! (20 分) 题目来源 “答案正确”是自动判题系统给出的最令人欢喜的回复.本题属于 PAT 的“答案正确”大派送 —— 只要读入的字符串满足下列条件,系统就输出“答案正确”,否则 ...

  7. PAT乙级--1003

    1003. 我要通过!(20) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Yue "答案正确"是 ...

  8. PAT乙级1003

    1003 我要通过! (20 point(s)) “答案正确”是自动判题系统给出的最令人欢喜的回复.本题属于 PAT 的“答案正确”大派送 —— 只要读入的字符串满足下列条件,系统就输出“答案正确”, ...

  9. [C++]PAT乙级1003. 我要通过!(17/20)

    /* 1003. 我要通过!(20) “答案正确”是自动判题系统给出的最令人欢喜的回复.本题属于PAT的“答案正确”大派送 —— 只要读入的字符串满足下列条件,系统就输出“答案正确”,否则输出“答案错 ...

  10. PAT 乙级 1003 我要通过!(20) C++版

    1003. 我要通过!(20) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Yue “答案正确”是自动判题系统给出的最 ...

随机推荐

  1. Yarn状态机

    1 概述 为了增大并发性,Yarn采用事件驱动的并发模型,将各种处理逻辑抽象成事件和调度器,将事件的处理过程用状态机表示.什么是状态机? 如果一个对象,其构成为若干个状态,以及触发这些状态发生相互转移 ...

  2. httpencode编码

    httpencode编码 uses System.NetEncoding var s: string := TNetEncoding.URL.Encode('123'); //123 var s2: ...

  3. STM32F429中LTDC的DMA2D加速

    液晶屏的时序问题?每个液晶屏的时序都不一样,但总体上是类似的.如下图: VDEN:    数据使能信号.HSYNC:     每一行扫描的起始点, 在扫描过程中, 不会管上一行扫描有没有结束, 当出现 ...

  4. Java面试之http知识点(必问)

    Java面试之http知识点(必问)   版权声明:本文为博主原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接和本声明. 本文链接:https://blog.csdn.net/q ...

  5. oracle库两个表关联查询时用 count 报错【我】

    oracle数据库,需要对两个表进行关联查询(根据两个字段),结果发现关联后不能改为 count 获取数量,报错如下: 同样的sql换到另外一个数据库就可以(只是因为数据量在千万级,所以很慢,用时40 ...

  6. 教你如何在linux上装逼,shell中颜色的设置

    linux启动后环境变量加载的顺序为:etc/profile → /etc/profile.d/*.sh → ~/.bash_profile → ~/.bashrc → [/etc/bashrc] 想 ...

  7. Mac下给sublime text3配置Nodejs

    传送门: http://blog.csdn.net/phil_young/article/details/50950206

  8. python配置yum源

    import subprocess import sys import os def main(): try: subprocess.call(["yum install wget -y;c ...

  9. laravel输出HTML内容

    blade模板引擎中的{{ $xxx }}表达式的返回值将被自动传递给 PHP 的 htmlentities 函数进行处理,以防止 XSS 攻击. 如果需要展示未转义的数据,可以使用{!! $xxx ...

  10. Tinymce在ASP.NET中的使用方法

    现在做网页,用FCKEditor用得比较多,它的实现原理是在要加入FCKEditor的地方加入一个iframe,并将其src指向FCKeditor/editor/fckeditor.html?Inst ...