結果

問題 No.762 PDCAパス
ユーザー tentententen
提出日時 2020-09-01 15:18:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,261 ms / 2,000 ms
コード長 1,513 bytes
コンパイル時間 2,594 ms
コンパイル使用メモリ 78,828 KB
実行使用メモリ 80,272 KB
最終ジャッジ日時 2024-11-19 03:08:24
合計ジャッジ時間 27,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,688 KB
testcase_01 AC 134 ms
53,856 KB
testcase_02 AC 133 ms
54,204 KB
testcase_03 AC 130 ms
53,872 KB
testcase_04 AC 132 ms
54,064 KB
testcase_05 AC 132 ms
54,288 KB
testcase_06 AC 132 ms
53,956 KB
testcase_07 AC 133 ms
54,112 KB
testcase_08 AC 122 ms
52,828 KB
testcase_09 AC 133 ms
53,984 KB
testcase_10 AC 134 ms
54,136 KB
testcase_11 AC 137 ms
54,192 KB
testcase_12 AC 136 ms
53,820 KB
testcase_13 AC 131 ms
54,040 KB
testcase_14 AC 128 ms
54,048 KB
testcase_15 AC 137 ms
54,088 KB
testcase_16 AC 140 ms
54,092 KB
testcase_17 AC 137 ms
54,264 KB
testcase_18 AC 140 ms
54,036 KB
testcase_19 AC 139 ms
53,848 KB
testcase_20 AC 139 ms
53,980 KB
testcase_21 AC 135 ms
53,812 KB
testcase_22 AC 847 ms
68,060 KB
testcase_23 AC 844 ms
65,384 KB
testcase_24 AC 946 ms
78,360 KB
testcase_25 AC 950 ms
77,728 KB
testcase_26 AC 860 ms
68,312 KB
testcase_27 AC 875 ms
68,032 KB
testcase_28 AC 1,136 ms
78,556 KB
testcase_29 AC 1,261 ms
79,028 KB
testcase_30 AC 1,081 ms
80,272 KB
testcase_31 AC 1,149 ms
77,796 KB
testcase_32 AC 1,222 ms
77,380 KB
testcase_33 AC 1,029 ms
72,700 KB
testcase_34 AC 1,179 ms
72,808 KB
testcase_35 AC 1,188 ms
72,904 KB
testcase_36 AC 1,054 ms
66,748 KB
testcase_37 AC 973 ms
67,396 KB
testcase_38 AC 963 ms
68,256 KB
testcase_39 AC 894 ms
70,424 KB
testcase_40 AC 986 ms
69,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int m = sc.nextInt();
    	char[] arr = sc.next().toCharArray();
    	ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    	for (int i = 0; i < n; i++) {
    	    graph.add(new ArrayList<>());
    	}
    	for (int i = 0; i < m; i++) {
    	    int a = sc.nextInt() - 1;
    	    int b = sc.nextInt() - 1;
    	    graph.get(a).add(b);
    	    graph.get(b).add(a);
    	}
    	int[] pCounts = new int[n];
    	for (int i = 0; i < n; i++) {
    	    if (arr[i] == 'P') {
    	        pCounts[i]++;
    	    }
    	}
    	int[] dCounts = new int[n];
    	for (int i = 0; i < n; i++) {
    	    if (arr[i] != 'D') {
    	        continue;
    	    }
    	    for (int x : graph.get(i)) {
    	        dCounts[i] += pCounts[x];
    	        dCounts[i] %= MOD;
    	    }
    	}
    	int[] cCounts = new int[n];
    	for (int i = 0; i < n; i++) {
    	    if (arr[i] != 'C') {
    	        continue;
    	    }
    	    for (int x : graph.get(i)) {
    	        cCounts[i] += dCounts[x];
    	        cCounts[i] %= MOD;
    	    }
    	}
    	int total = 0;
    	for (int i = 0; i < n; i++) {
    	    if (arr[i] != 'A') {
    	        continue;
    	    }
    	    for (int x : graph.get(i)) {
    	        total += cCounts[x];
    	        total %= MOD;
    	    }
    	}
    	System.out.println(total);
    }
}
0