結果

問題 No.30 たこやき工場
ユーザー tentententen
提出日時 2023-01-26 10:13:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 2,526 bytes
コンパイル時間 2,900 ms
コンパイル使用メモリ 90,968 KB
実行使用メモリ 51,596 KB
最終ジャッジ日時 2023-09-09 13:44:25
合計ジャッジ時間 4,852 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
49,316 KB
testcase_01 AC 45 ms
49,364 KB
testcase_02 AC 44 ms
49,252 KB
testcase_03 AC 46 ms
49,216 KB
testcase_04 AC 44 ms
49,392 KB
testcase_05 AC 45 ms
49,340 KB
testcase_06 AC 45 ms
49,300 KB
testcase_07 AC 44 ms
49,296 KB
testcase_08 AC 50 ms
49,436 KB
testcase_09 AC 51 ms
49,256 KB
testcase_10 AC 83 ms
51,596 KB
testcase_11 AC 49 ms
49,540 KB
testcase_12 AC 47 ms
49,372 KB
testcase_13 AC 50 ms
47,296 KB
testcase_14 AC 52 ms
49,456 KB
testcase_15 AC 53 ms
49,440 KB
testcase_16 AC 59 ms
50,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static long[] dp;
    static ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        for (int i = 0; i < n; i++) {
            graph.add(new HashMap<>());
        }
        int m = sc.nextInt();
        int[] counts = new int[n];
        for (int i = 0; i < m; i++) {
            int p = sc.nextInt() - 1;
            int q = sc.nextInt();
            int r = sc.nextInt() - 1;
            graph.get(p).put(r, q);
            counts[r]++;
        }
        dp = new long[n];
        Arrays.fill(dp, -1);
        dp[n - 1] = 1;
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n - 1; i++) {
            if (counts[i] > 0) {
                sb.append("0\n");
                continue;
            }
            sb.append(dfw(i)).append("\n");
        }
        System.out.print(sb);
    }
    
    static long dfw(int idx) {
        if (dp[idx] < 0) {
            dp[idx] = 0;
            for (int x : graph.get(idx).keySet()) {
                dp[idx] += dfw(x) * graph.get(idx).get(x);
            }
        }
        return dp[idx];
    }
}

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