結果

問題 No.30 たこやき工場
ユーザー htensaihtensai
提出日時 2020-05-14 18:45:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 228 ms / 5,000 ms
コード長 1,737 bytes
コンパイル時間 2,543 ms
コンパイル使用メモリ 84,156 KB
実行使用メモリ 57,684 KB
最終ジャッジ日時 2024-06-01 03:05:02
合計ジャッジ時間 6,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,900 KB
testcase_01 AC 136 ms
54,132 KB
testcase_02 AC 144 ms
54,484 KB
testcase_03 AC 143 ms
54,172 KB
testcase_04 AC 140 ms
54,244 KB
testcase_05 AC 139 ms
54,208 KB
testcase_06 AC 146 ms
54,240 KB
testcase_07 AC 143 ms
54,128 KB
testcase_08 AC 185 ms
54,432 KB
testcase_09 AC 186 ms
54,564 KB
testcase_10 AC 228 ms
57,684 KB
testcase_11 AC 182 ms
54,376 KB
testcase_12 AC 149 ms
54,144 KB
testcase_13 AC 160 ms
54,304 KB
testcase_14 AC 185 ms
54,452 KB
testcase_15 AC 194 ms
54,388 KB
testcase_16 AC 194 ms
54,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>();
    static ArrayList<HashMap<Integer, Integer>> result = new ArrayList<>();
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		for (int i = 0; i < n; i++) {
		    graph.add(new HashMap<>());
		    result.add(new HashMap<>());
		}
		for (int i = 0; i < m; i++) {
		    int source = sc.nextInt() - 1;
		    int count = sc.nextInt();
		    graph.get(sc.nextInt() - 1).put(source, count);
		}
		HashMap<Integer, Integer> ans = search(n - 1);
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n - 1; i++) {
		    if (ans.containsKey(i)) {
		        sb.append(ans.get(i));
		    } else {
		        sb.append("0");
		    }
		    sb.append("\n");
		}
		System.out.print(sb);
	}
    
    static HashMap<Integer, Integer> search(int idx) {
        HashMap<Integer, Integer> map = result.get(idx);
        if (map.size() > 0) {
            return map;
        }
        if (graph.get(idx).size() == 0) {
            map.put(idx, 1);
            return map;
        }
        for (Map.Entry<Integer, Integer> entry1 : graph.get(idx).entrySet()) {
            HashMap<Integer, Integer> parts = search(entry1.getKey());
            for (Map.Entry<Integer, Integer> entry2 : parts.entrySet()) {
                int key = entry2.getKey();
                int value = entry1.getValue() * entry2.getValue();
                if (map.containsKey(key)) {
                    map.put(key, map.get(key) + value);
                } else {
                    map.put(key, value);
                }
            }
        }
        return map;
    }
}
0