結果

問題 No.30 たこやき工場
ユーザー fal_rndfal_rnd
提出日時 2016-11-27 12:33:51
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 871 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 78,564 KB
実行使用メモリ 85,092 KB
最終ジャッジ日時 2024-05-05 14:11:55
合計ジャッジ時間 10,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
85,092 KB
testcase_01 AC 115 ms
41,192 KB
testcase_02 AC 115 ms
40,164 KB
testcase_03 AC 113 ms
40,928 KB
testcase_04 AC 112 ms
41,096 KB
testcase_05 AC 115 ms
41,328 KB
testcase_06 AC 117 ms
41,204 KB
testcase_07 AC 118 ms
41,112 KB
testcase_08 AC 213 ms
41,972 KB
testcase_09 AC 138 ms
41,684 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int size = Integer.parseInt(s.next());
		int[][] step = new int[size][size];
		long[] amount = new long[size];
		boolean[] used = new boolean[size];
		ArrayDeque<Integer> deque = new ArrayDeque<>();
		deque.add(size-1);
		for(int i=Integer.parseInt(s.next())-1;i>=0;--i) {
			int from = Integer.parseInt(s.next())-1,
			    x    = Integer.parseInt(s.next()),
			    to   = Integer.parseInt(s.next())-1;
			step[to][from]=x;
			used[to]=true;
		}
		while(!deque.isEmpty()) {
			int i = deque.pollFirst();
			amount[size-1]=1;
			for(int j=0;j<size;j++) {
				if(step[i][j]>0) {
					amount[j] += step[i][j]*amount[i];
					deque.addFirst(j);
				}
			}
			if(used[i])
				amount[i]=0;
		}
		for(int i=0;i<size-1;i++)
			System.out.println(amount[i]);
	}
}
0