結果

問題 No.762 PDCAパス
ユーザー tentententen
提出日時 2020-09-01 15:18:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,228 ms / 2,000 ms
コード長 1,513 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 79,692 KB
実行使用メモリ 71,064 KB
最終ジャッジ日時 2024-04-29 20:05:03
合計ジャッジ時間 25,046 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
39,920 KB
testcase_01 AC 114 ms
41,032 KB
testcase_02 AC 123 ms
41,152 KB
testcase_03 AC 119 ms
40,852 KB
testcase_04 AC 120 ms
40,768 KB
testcase_05 AC 118 ms
40,956 KB
testcase_06 AC 118 ms
39,924 KB
testcase_07 AC 120 ms
40,916 KB
testcase_08 AC 118 ms
39,788 KB
testcase_09 AC 116 ms
41,096 KB
testcase_10 AC 119 ms
41,116 KB
testcase_11 AC 120 ms
41,024 KB
testcase_12 AC 117 ms
39,800 KB
testcase_13 AC 116 ms
40,676 KB
testcase_14 AC 114 ms
40,132 KB
testcase_15 AC 120 ms
39,952 KB
testcase_16 AC 134 ms
41,212 KB
testcase_17 AC 124 ms
40,940 KB
testcase_18 AC 113 ms
39,940 KB
testcase_19 AC 118 ms
40,448 KB
testcase_20 AC 121 ms
39,952 KB
testcase_21 AC 116 ms
40,084 KB
testcase_22 AC 713 ms
55,372 KB
testcase_23 AC 732 ms
56,168 KB
testcase_24 AC 817 ms
67,300 KB
testcase_25 AC 897 ms
67,352 KB
testcase_26 AC 762 ms
56,872 KB
testcase_27 AC 765 ms
56,792 KB
testcase_28 AC 1,228 ms
67,556 KB
testcase_29 AC 1,093 ms
71,064 KB
testcase_30 AC 1,020 ms
65,740 KB
testcase_31 AC 989 ms
65,564 KB
testcase_32 AC 1,201 ms
65,844 KB
testcase_33 AC 1,080 ms
60,512 KB
testcase_34 AC 1,048 ms
60,384 KB
testcase_35 AC 1,072 ms
60,396 KB
testcase_36 AC 925 ms
57,084 KB
testcase_37 AC 985 ms
59,280 KB
testcase_38 AC 953 ms
59,012 KB
testcase_39 AC 964 ms
57,692 KB
testcase_40 AC 894 ms
58,424 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