PAT1003

Posted alittlecomputer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT1003相关的知识,希望对你有一定的参考价值。

代码如下:

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner input = new Scanner(System.in);
        int num = input.nextInt();
        String[] StrArr = new String[num];
        for(int i = 0;i<num;i++){
            StrArr[i] = input.next();
        }
        for(int j = 0;j<num;j++){
            judge(StrArr[j]);
        }
    }
    
    public static void judge(String str){
        String pattern1 = "A*PA+TA*";
        String pattern2 = "PA+T";
        if(str.matches(pattern1)){
            if(str.matches(pattern2)){
                System.out.println("YES");
            }else{
                String temp[] = str.split("P|T");
                int aLength = temp[0].length();
                int bLength = temp[1].length();
                int cLentth = temp[2].length();
                if((cLentth-aLength)/aLength==(bLength-1)){
                    System.out.println("YES");
                }else{
                    System.out.println("NO");
                }
            }
        }else{
            System.out.println("NO");
        }
    }
}

 

以上是关于PAT1003的主要内容,如果未能解决你的问题,请参考以下文章

PAT 甲级 1003. Emergency (25)

JAVA1003 我要通过!(20分) PAT乙级 PAT (Basic Level)Practice (中文)

PAT1003

JAVA1003 我要通过!(20分) PAT乙级 PAT (Basic Level)Practice (中文)

PAT-1003 Emergency

pat1003 迪杰斯特拉法和dfs求最短路