結果

問題 No.762 PDCAパス
ユーザー YamaKasaYamaKasa
提出日時 2019-02-12 17:47:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 925 ms / 2,000 ms
コード長 1,812 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 77,756 KB
実行使用メモリ 64,848 KB
最終ジャッジ日時 2024-09-13 09:42:50
合計ジャッジ時間 23,600 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,940 KB
testcase_01 AC 134 ms
54,204 KB
testcase_02 AC 134 ms
53,912 KB
testcase_03 AC 138 ms
53,928 KB
testcase_04 AC 139 ms
54,020 KB
testcase_05 AC 139 ms
54,392 KB
testcase_06 AC 132 ms
53,980 KB
testcase_07 AC 132 ms
54,064 KB
testcase_08 AC 135 ms
53,996 KB
testcase_09 AC 134 ms
54,144 KB
testcase_10 AC 121 ms
52,744 KB
testcase_11 AC 134 ms
54,268 KB
testcase_12 AC 135 ms
53,692 KB
testcase_13 AC 132 ms
54,068 KB
testcase_14 AC 135 ms
54,044 KB
testcase_15 AC 141 ms
54,196 KB
testcase_16 AC 145 ms
54,012 KB
testcase_17 AC 139 ms
54,064 KB
testcase_18 AC 139 ms
53,688 KB
testcase_19 AC 139 ms
53,728 KB
testcase_20 AC 141 ms
53,872 KB
testcase_21 AC 139 ms
53,928 KB
testcase_22 AC 746 ms
63,400 KB
testcase_23 AC 798 ms
61,852 KB
testcase_24 AC 768 ms
61,724 KB
testcase_25 AC 786 ms
62,268 KB
testcase_26 AC 751 ms
63,900 KB
testcase_27 AC 790 ms
63,840 KB
testcase_28 AC 906 ms
63,316 KB
testcase_29 AC 891 ms
63,428 KB
testcase_30 AC 771 ms
64,256 KB
testcase_31 AC 882 ms
64,848 KB
testcase_32 AC 825 ms
64,204 KB
testcase_33 AC 853 ms
64,844 KB
testcase_34 AC 888 ms
63,096 KB
testcase_35 AC 925 ms
64,828 KB
testcase_36 AC 846 ms
61,832 KB
testcase_37 AC 877 ms
61,396 KB
testcase_38 AC 802 ms
62,876 KB
testcase_39 AC 782 ms
64,720 KB
testcase_40 AC 822 ms
63,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		String S = sc.next();
		int[] u = new int[M];
		int[] v = new int[M];
		for(int i = 0; i < M; i++) {
			u[i] = sc.nextInt() - 1;
			v[i] = sc.nextInt() - 1;
		}
		sc.close();
		long mod = (long)Math.pow(10, 9) + 7;
		int cp = 0;
		int cd = 0;
		int cc = 0;
		int ca = 0;
		int[] node = new int[N];
		for(int i = 0; i < N; i++) {
			char c = S.charAt(i);
			if(c == 'P') {
				node[i] = cp;
				cp++;
			}else if(c == 'D') {
				node[i] = cd;
				cd++;
			}else if(c == 'C') {
				node[i] = cc;
				cc++;
			}else if(c == 'A') {
				node[i] = ca;
				ca++;
			}
		}
		if(cp == 0 || cd == 0 || cc == 0 || ca == 0) {
			System.out.println(0);
			System.exit(0);
		}
		long[] C = new long[cc];
		for(int i = 0; i < M; i++) {
			char cu = S.charAt(u[i]);
			char cv = S.charAt(v[i]);
			if(cu == 'C' && cv == 'A') {
				C[node[u[i]]]++;
			}else if(cu == 'A' && cv == 'C'){
				C[node[v[i]]]++;
			}
		}
		long[] D = new long[cd];
		for(int i = 0; i < M; i++) {
			char cu = S.charAt(u[i]);
			char cv = S.charAt(v[i]);
			if(cu == 'D' && cv == 'C') {
				D[node[u[i]]] += C[node[v[i]]];
				D[node[u[i]]] %= mod;
			}else if(cu == 'C' && cv == 'D'){
				D[node[v[i]]] += C[node[u[i]]];
				D[node[v[i]]] %= mod;
			}
		}
		long[] P = new long[cp];
		for(int i = 0; i < M; i++) {
			char cu = S.charAt(u[i]);
			char cv = S.charAt(v[i]);
			if(cu == 'P' && cv == 'D') {
				P[node[u[i]]] += D[node[v[i]]];
				P[node[u[i]]] %= mod;
			}else if(cu == 'D' && cv == 'P'){
				P[node[v[i]]] += D[node[u[i]]];
				P[node[v[i]]] %= mod;
			}
		}
		long ans = 0;
		for(long i : P) {
			ans += i;
			ans %= mod;
		}
		System.out.println(ans);
	}
}
0