結果

問題 No.30 たこやき工場
ユーザー htensaihtensai
提出日時 2020-05-14 18:45:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 256 ms / 5,000 ms
コード長 1,737 bytes
コンパイル時間 2,767 ms
コンパイル使用メモリ 80,248 KB
実行使用メモリ 57,868 KB
最終ジャッジ日時 2024-12-21 05:30:52
合計ジャッジ時間 6,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,116 KB
testcase_01 AC 145 ms
53,924 KB
testcase_02 AC 149 ms
54,064 KB
testcase_03 AC 148 ms
54,004 KB
testcase_04 AC 148 ms
53,832 KB
testcase_05 AC 147 ms
54,048 KB
testcase_06 AC 153 ms
54,008 KB
testcase_07 AC 149 ms
53,840 KB
testcase_08 AC 196 ms
54,460 KB
testcase_09 AC 212 ms
54,304 KB
testcase_10 AC 256 ms
57,868 KB
testcase_11 AC 179 ms
54,284 KB
testcase_12 AC 150 ms
54,192 KB
testcase_13 AC 162 ms
54,016 KB
testcase_14 AC 194 ms
54,116 KB
testcase_15 AC 198 ms
54,380 KB
testcase_16 AC 203 ms
54,388 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