結果

問題 No.30 たこやき工場
ユーザー fal_rndfal_rnd
提出日時 2016-11-27 14:09:23
言語 Java
(openjdk 23)
結果
AC  
実行時間 197 ms / 5,000 ms
コード長 1,106 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 80,016 KB
実行使用メモリ 56,564 KB
最終ジャッジ日時 2024-12-21 05:26:04
合計ジャッジ時間 5,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,788 KB
testcase_01 AC 124 ms
53,988 KB
testcase_02 AC 129 ms
53,940 KB
testcase_03 AC 132 ms
54,100 KB
testcase_04 AC 133 ms
54,068 KB
testcase_05 AC 129 ms
53,940 KB
testcase_06 AC 157 ms
54,228 KB
testcase_07 AC 130 ms
54,256 KB
testcase_08 AC 164 ms
54,000 KB
testcase_09 AC 171 ms
54,264 KB
testcase_10 AC 197 ms
56,564 KB
testcase_11 AC 164 ms
54,088 KB
testcase_12 AC 133 ms
53,948 KB
testcase_13 AC 143 ms
53,736 KB
testcase_14 AC 173 ms
54,388 KB
testcase_15 AC 170 ms
54,256 KB
testcase_16 AC 182 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Map.Entry;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int size = Integer.parseInt(s.next());
		boolean[] buy = new boolean[size];
		Product[] p   = new Product[size];
		for(int i=0;i<size-1;++i) {
			p[i]=new Product();
		}
		p[size-1]=new PerfectP();
		Arrays.fill(buy, true);

		for(int i=Integer.parseInt(s.next());i>0;--i) {
			int from=Integer.parseInt(s.next())-1,
			    x   =Integer.parseInt(s.next()),
			    to  =Integer.parseInt(s.next())-1;
			buy[to]=false;
			p[from].needs.put(p[to], x);
		}
		for(int i=0;i<size;i++) {
			p[i].getNeeds();
		}
		for(int i=0;i<size-1;i++) {
			System.out.println((buy[i]?p[i].getNeeds():0));
		}
	}
}
class Product{
	HashMap<Product,Integer> needs = new HashMap<>();
	long memo=0;
	boolean explored=false;
	long getNeeds() {
		if(!explored) {
			explored=true;
			for(Entry<Product, Integer> e:needs.entrySet()) {
				memo+=e.getKey().getNeeds()*e.getValue();
			}
		}
		return memo;
	}
}
class PerfectP extends Product{
	@Override
	long getNeeds() {
		return 1;
	}
}
0