結果

問題 No.1111 コード進行
ユーザー tentententen
提出日時 2023-03-17 15:15:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 2,805 bytes
コンパイル時間 2,758 ms
コンパイル使用メモリ 85,212 KB
実行使用メモリ 185,232 KB
最終ジャッジ日時 2024-09-18 10:00:27
合計ジャッジ時間 11,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,248 KB
testcase_01 AC 53 ms
37,196 KB
testcase_02 AC 52 ms
36,876 KB
testcase_03 AC 52 ms
37,168 KB
testcase_04 AC 52 ms
36,840 KB
testcase_05 AC 57 ms
37,884 KB
testcase_06 AC 85 ms
40,636 KB
testcase_07 AC 78 ms
40,912 KB
testcase_08 AC 79 ms
38,832 KB
testcase_09 AC 86 ms
40,012 KB
testcase_10 AC 77 ms
40,980 KB
testcase_11 AC 59 ms
37,900 KB
testcase_12 AC 110 ms
42,628 KB
testcase_13 AC 62 ms
38,792 KB
testcase_14 AC 165 ms
49,052 KB
testcase_15 AC 56 ms
37,512 KB
testcase_16 AC 98 ms
41,768 KB
testcase_17 AC 71 ms
40,428 KB
testcase_18 AC 57 ms
37,916 KB
testcase_19 AC 56 ms
37,568 KB
testcase_20 AC 58 ms
38,352 KB
testcase_21 AC 55 ms
37,288 KB
testcase_22 AC 79 ms
45,184 KB
testcase_23 AC 63 ms
39,040 KB
testcase_24 AC 77 ms
39,772 KB
testcase_25 AC 132 ms
47,872 KB
testcase_26 AC 154 ms
48,072 KB
testcase_27 AC 58 ms
37,760 KB
testcase_28 AC 135 ms
101,076 KB
testcase_29 AC 106 ms
65,828 KB
testcase_30 AC 390 ms
100,100 KB
testcase_31 AC 97 ms
46,076 KB
testcase_32 AC 419 ms
97,560 KB
testcase_33 AC 452 ms
80,820 KB
testcase_34 AC 129 ms
77,184 KB
testcase_35 AC 144 ms
101,876 KB
testcase_36 AC 145 ms
100,584 KB
testcase_37 AC 126 ms
55,012 KB
testcase_38 AC 374 ms
63,944 KB
testcase_39 AC 591 ms
100,604 KB
testcase_40 AC 622 ms
127,268 KB
testcase_41 AC 144 ms
100,416 KB
testcase_42 AC 126 ms
65,320 KB
testcase_43 AC 531 ms
82,684 KB
testcase_44 AC 92 ms
53,908 KB
testcase_45 AC 124 ms
74,800 KB
testcase_46 AC 123 ms
43,040 KB
testcase_47 AC 286 ms
185,232 KB
testcase_48 AC 143 ms
47,352 KB
testcase_49 AC 90 ms
40,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    static ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>();
    static int[][][] dp;
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int k = sc.nextInt();
        for (int i = 0; i < 300; i++) {
            graph.add(new HashMap<>());
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            int c = sc.nextInt();
            graph.get(b).put(a, c);
        }
        dp = new int[n][300][k + 1];
        for (int[][] arr1 : dp) {
            for (int[] arr2 : arr1) {
                Arrays.fill(arr2, -1);
            }
        }
        int ans = 0;
        for (int i = 0; i < 300; i++) {
            ans += dfw(n - 1, i, k);
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static int dfw(int idx, int c, int v) {
        if (v < 0) {
            return 0;
        }
        if (idx == 0) {
            if (v == 0) {
                return 1;
            } else {
                return 0;
            }
        }
        if (dp[idx][c][v] < 0) {
            dp[idx][c][v] = 0;
            for (int x : graph.get(c).keySet()) {
                dp[idx][c][v] += dfw(idx - 1, x, v - graph.get(c).get(x));
                dp[idx][c][v] %= MOD;
            }
        }
        return dp[idx][c][v];
    }
    
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0