結果

問題 No.30 たこやき工場
ユーザー ぴろずぴろず
提出日時 2015-02-16 22:28:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 5,000 ms
コード長 1,138 bytes
コンパイル時間 2,802 ms
コンパイル使用メモリ 78,064 KB
実行使用メモリ 57,480 KB
最終ジャッジ日時 2024-12-21 05:19:34
合計ジャッジ時間 6,760 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
54,336 KB
testcase_01 AC 161 ms
54,104 KB
testcase_02 AC 158 ms
54,028 KB
testcase_03 AC 161 ms
53,920 KB
testcase_04 AC 162 ms
54,292 KB
testcase_05 AC 161 ms
53,744 KB
testcase_06 AC 165 ms
53,820 KB
testcase_07 AC 161 ms
54,084 KB
testcase_08 AC 199 ms
54,380 KB
testcase_09 AC 205 ms
54,152 KB
testcase_10 AC 243 ms
57,480 KB
testcase_11 AC 199 ms
54,236 KB
testcase_12 AC 164 ms
53,852 KB
testcase_13 AC 179 ms
54,404 KB
testcase_14 AC 219 ms
54,500 KB
testcase_15 AC 221 ms
54,420 KB
testcase_16 AC 228 ms
54,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no30;

import java.util.ArrayList;
import java.util.Scanner;

public class Main {

	static long[][] memo;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		@SuppressWarnings("unchecked")
		ArrayList<Pair>[] recipe = new ArrayList[n];
		for(int i=0;i<n;i++) {
			recipe[i] = new ArrayList<>();
		}
		for(int i=0;i<m;i++) {
			int p = sc.nextInt() - 1;
			int q = sc.nextInt();
			int r = sc.nextInt() - 1;
			recipe[r].add(new Pair(p,q));
		}
		memo = new long[n][];
		long[] ans = dfs(n-1,n,recipe);
		for(int i=0;i<n-1;i++) {
			System.out.println(ans[i]);
		}

	}

	static long[] dfs(int i,int n,ArrayList<Pair>[] recipe) {
		if (memo[i] != null) {
			return memo[i];
		}
		long[] sum = new long[n];
		if (recipe[i].size() == 0) {
			sum[i] = 1;
		}else{
			for(Pair p:recipe[i]) {
				long[] m = dfs(p.material,n,recipe);
				for(int j=0;j<n;j++) {
					sum[j] += m[j] * p.quantity;
				}
			}
		}
		return memo[i] = sum;
	}


}
class Pair {
	int material;
	int quantity;
	public Pair(int p,int q) {
		this.material = p;
		this.quantity = q;
	}
}
0