結果

問題 No.30 たこやき工場
ユーザー uafr_csuafr_cs
提出日時 2017-11-01 22:51:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 244 ms / 5,000 ms
コード長 1,536 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 80,624 KB
実行使用メモリ 46,536 KB
最終ジャッジ日時 2024-06-01 03:01:29
合計ジャッジ時間 5,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,216 KB
testcase_01 AC 133 ms
41,492 KB
testcase_02 AC 137 ms
40,900 KB
testcase_03 AC 124 ms
40,208 KB
testcase_04 AC 136 ms
41,360 KB
testcase_05 AC 138 ms
41,324 KB
testcase_06 AC 144 ms
41,188 KB
testcase_07 AC 143 ms
41,200 KB
testcase_08 AC 183 ms
42,072 KB
testcase_09 AC 198 ms
42,080 KB
testcase_10 AC 244 ms
46,536 KB
testcase_11 AC 181 ms
42,100 KB
testcase_12 AC 141 ms
41,316 KB
testcase_13 AC 153 ms
41,752 KB
testcase_14 AC 197 ms
42,180 KB
testcase_15 AC 194 ms
42,652 KB
testcase_16 AC 199 ms
42,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Map.Entry;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int M = sc.nextInt();
		
		int[] in_degs = new int[N];
		ArrayList<HashMap<Integer, Long>> rev_adj = new ArrayList<HashMap<Integer, Long>>();
		for(int i = 0; i < N; i++){ rev_adj.add(new HashMap<Integer, Long>()); }
		
		for(int i = 0; i < M; i++){
			final int P = sc.nextInt() - 1;
			final long Q = sc.nextLong();
			final int R = sc.nextInt() - 1;
			
			in_degs[R]++;
			if(!rev_adj.get(P).containsKey(R)){
				rev_adj.get(P).put(R, Q);
			}else{
				rev_adj.get(P).put(R, Math.min(Q, rev_adj.get(P).get(R)));
			}
		}
		
		LinkedList<Integer> queue = new LinkedList<Integer>();
		long[][] comps = new long[N][N];
		for(int i = 0; i < N; i++){
			if(in_degs[i] != 0){ continue; }
			comps[i][i] = 1;
			queue.add(i);
		}
		
		while(!queue.isEmpty()){
			final int node = queue.poll();
			
			for(final Entry<Integer, Long> entry : rev_adj.get(node).entrySet()){
				final int from = entry.getKey();
				final long value = entry.getValue();
				
				for(int i = 0; i < N; i++){
					comps[from][i] += value * comps[node][i];
				}
				
				in_degs[from]--;
				if(in_degs[from] == 0){ queue.add(from); }
			}
		}
		
		for(int i = 0; i < N - 1; i++){
			System.out.println(comps[N - 1][i]);
		}
	}
}
0