結果

問題 No.30 たこやき工場
ユーザー fal_rndfal_rnd
提出日時 2016-11-27 14:09:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 5,000 ms
コード長 1,106 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 80,488 KB
実行使用メモリ 43,372 KB
最終ジャッジ日時 2024-06-01 03:00:44
合計ジャッジ時間 5,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,200 KB
testcase_01 AC 129 ms
41,364 KB
testcase_02 AC 131 ms
41,040 KB
testcase_03 AC 132 ms
41,200 KB
testcase_04 AC 133 ms
41,028 KB
testcase_05 AC 130 ms
41,380 KB
testcase_06 AC 136 ms
41,352 KB
testcase_07 AC 120 ms
40,044 KB
testcase_08 AC 154 ms
41,620 KB
testcase_09 AC 174 ms
41,624 KB
testcase_10 AC 197 ms
43,372 KB
testcase_11 AC 151 ms
41,368 KB
testcase_12 AC 133 ms
41,156 KB
testcase_13 AC 143 ms
41,428 KB
testcase_14 AC 158 ms
41,932 KB
testcase_15 AC 175 ms
41,664 KB
testcase_16 AC 185 ms
42,036 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