結果

問題 No.1111 コード進行
ユーザー tentententen
提出日時 2020-08-18 07:28:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 1,386 bytes
コンパイル時間 2,281 ms
コンパイル使用メモリ 79,516 KB
実行使用メモリ 171,468 KB
最終ジャッジ日時 2024-10-11 20:21:26
合計ジャッジ時間 15,142 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,432 KB
testcase_01 AC 134 ms
41,368 KB
testcase_02 AC 134 ms
41,412 KB
testcase_03 AC 135 ms
41,080 KB
testcase_04 AC 136 ms
41,072 KB
testcase_05 AC 142 ms
42,652 KB
testcase_06 AC 193 ms
44,288 KB
testcase_07 AC 203 ms
44,196 KB
testcase_08 AC 199 ms
43,008 KB
testcase_09 AC 186 ms
43,380 KB
testcase_10 AC 161 ms
48,148 KB
testcase_11 AC 184 ms
42,740 KB
testcase_12 AC 222 ms
47,264 KB
testcase_13 AC 159 ms
43,332 KB
testcase_14 AC 258 ms
48,872 KB
testcase_15 AC 159 ms
42,268 KB
testcase_16 AC 205 ms
47,492 KB
testcase_17 AC 154 ms
48,172 KB
testcase_18 AC 147 ms
42,232 KB
testcase_19 AC 144 ms
41,716 KB
testcase_20 AC 156 ms
42,604 KB
testcase_21 AC 149 ms
41,476 KB
testcase_22 AC 154 ms
47,940 KB
testcase_23 AC 169 ms
43,460 KB
testcase_24 AC 154 ms
43,468 KB
testcase_25 AC 234 ms
47,796 KB
testcase_26 AC 234 ms
48,404 KB
testcase_27 AC 181 ms
42,464 KB
testcase_28 AC 205 ms
100,688 KB
testcase_29 AC 174 ms
66,976 KB
testcase_30 AC 379 ms
82,112 KB
testcase_31 AC 170 ms
48,088 KB
testcase_32 AC 411 ms
78,012 KB
testcase_33 AC 466 ms
68,992 KB
testcase_34 AC 187 ms
80,476 KB
testcase_35 AC 189 ms
100,736 KB
testcase_36 AC 279 ms
98,704 KB
testcase_37 AC 233 ms
56,292 KB
testcase_38 AC 381 ms
57,936 KB
testcase_39 AC 554 ms
81,288 KB
testcase_40 AC 558 ms
102,036 KB
testcase_41 AC 236 ms
120,700 KB
testcase_42 AC 269 ms
66,876 KB
testcase_43 AC 501 ms
73,612 KB
testcase_44 AC 182 ms
55,936 KB
testcase_45 AC 198 ms
77,564 KB
testcase_46 AC 214 ms
43,676 KB
testcase_47 AC 382 ms
171,468 KB
testcase_48 AC 240 ms
46,248 KB
testcase_49 AC 191 ms
43,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static ArrayList<HashMap<Integer, Integer>> list = new ArrayList<>();
    static int[][][] dp;
    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();
		int k = sc.nextInt();
		for (int i = 0; i <= 300; i++) {
		    list.add(new HashMap<>());
		}
		for (int i = 0; i < m; i++) {
		    int p = sc.nextInt();
		    int q = sc.nextInt();
		    int c = sc.nextInt();
		    list.get(q).put(p, c);
		}
		dp = new int[n][k + 1][301];
		for (int[][] arr1 : dp) {
		    for (int[] arr2 : arr1) {
		        Arrays.fill(arr2, -1);
		    }
		}
		int ans = 0;
		for (int i = 1; i <= 300; i++) {
		    ans += dfw(n - 1, k, i);
		    ans %= MOD;
		}
		System.out.println(ans);
    }
    
    static int dfw(int idx, int value, int code) {
        if (idx == 0 && value == 0) {
            return 1;
        }
        if (idx <= 0 || value < 0) {
            return 0;
        }
        if (dp[idx][value][code] >= 0) {
            return dp[idx][value][code];
        }
        int ans = 0;
        for (Map.Entry<Integer, Integer> entry : list.get(code).entrySet()) {
            ans += dfw(idx - 1, value - entry.getValue(), entry.getKey());
            ans %= MOD;
        }
        dp[idx][value][code] = ans;
        return ans;
    }
}

0