結果

問題 No.30 たこやき工場
ユーザー fal_rndfal_rnd
提出日時 2016-11-27 10:40:11
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,109 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 78,492 KB
実行使用メモリ 700,024 KB
最終ジャッジ日時 2024-11-27 12:08:18
合計ジャッジ時間 11,964 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,140 KB
testcase_01 AC 114 ms
40,020 KB
testcase_02 AC 128 ms
41,172 KB
testcase_03 AC 136 ms
41,312 KB
testcase_04 AC 132 ms
41,140 KB
testcase_05 AC 134 ms
40,144 KB
testcase_06 AC 134 ms
41,296 KB
testcase_07 AC 123 ms
40,756 KB
testcase_08 AC 218 ms
45,676 KB
testcase_09 AC 162 ms
41,584 KB
testcase_10 TLE -
testcase_11 AC 469 ms
41,152 KB
testcase_12 AC 113 ms
40,632 KB
testcase_13 AC 125 ms
41,272 KB
testcase_14 AC 149 ms
41,504 KB
testcase_15 AC 157 ms
41,640 KB
testcase_16 AC 158 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		Product[] products = new Product[Integer.parseInt(s.next())];
		for (int i=0;i<products.length;i++) {
			products[i]=new Product();
		}
		for(int i=Integer.parseInt(s.next());i>0;i--) {
			new Step(
					products[Integer.parseInt(s.next())-1],
					         Integer.parseInt(s.next()),
					products[Integer.parseInt(s.next())-1]
					);
		}
		ArrayDeque<Product> queue = new ArrayDeque<>();
		queue.add(products[products.length-1]);
		products[products.length-1].needed++;
		while(!queue.isEmpty()) {
			Product p = queue.poll();
			if(p.making.isEmpty()) {
				continue;
			}
			for(Step s:p.making) {
				s.from.needed+=p.needed*s.x;
				queue.add(s.from);
			}
			p.needed=0;
		}
		for(int i=0;i<products.length-1;i++) {
			System.out.println(products[i].needed);
		}
	}
}
class Product{
	long needed=0;
	ArrayList<Step> making = new ArrayList<>();
}
class Step{
	Product from,to;
	long x;
	Step(Product from, int x, Product to) {
		this.from=from;
		this.x=x;
		to.making.add(this);
	}
}
0