結果

問題 No.30 たこやき工場
ユーザー tentententen
提出日時 2021-03-05 18:29:46
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,421 bytes
コンパイル時間 2,484 ms
コンパイル使用メモリ 79,868 KB
実行使用メモリ 53,868 KB
最終ジャッジ日時 2024-10-06 20:08:30
合計ジャッジ時間 11,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
39,948 KB
testcase_01 AC 105 ms
40,148 KB
testcase_02 AC 119 ms
41,004 KB
testcase_03 AC 110 ms
39,892 KB
testcase_04 AC 121 ms
41,540 KB
testcase_05 AC 107 ms
40,284 KB
testcase_06 AC 121 ms
41,240 KB
testcase_07 AC 115 ms
40,920 KB
testcase_08 AC 287 ms
53,868 KB
testcase_09 AC 166 ms
41,796 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            graph.add(new HashMap<>());
        }
        for (int i = 0; i < m; i++) {
            int parts = sc.nextInt() - 1;
            int count = sc.nextInt();
            int product = sc.nextInt() - 1;
            graph.get(product).put(parts, count);
        }
        ArrayDeque<Path> deq = new ArrayDeque<>();
        deq.add(new Path(n - 1, 1));
        long[] ans = new long[n];
        while (deq.size() > 0) {
            Path p = deq.poll();
            if (graph.get(p.idx).size() == 0) {
                ans[p.idx] += p.value;
            } else {
                for (int x : graph.get(p.idx).keySet()) {
                    deq.add(new Path(x, p.value * graph.get(p.idx).get(x)));
                }
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n - 1; i++) {
            sb.append(ans[i]).append("\n");
        }
        System.out.print(sb);
    }
    
    static class Path {
        int idx;
        long value;
        
        public Path(int idx, long value) {
            this.idx = idx;
            this.value = value;
        }
    }
}
0