結果

問題 No.30 たこやき工場
ユーザー ぴろずぴろず
提出日時 2015-02-16 22:28:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 233 ms / 5,000 ms
コード長 1,138 bytes
コンパイル時間 3,196 ms
コンパイル使用メモリ 78,736 KB
実行使用メモリ 57,672 KB
最終ジャッジ日時 2024-06-01 02:57:22
合計ジャッジ時間 5,988 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,996 KB
testcase_01 AC 134 ms
54,168 KB
testcase_02 AC 142 ms
54,132 KB
testcase_03 AC 143 ms
53,964 KB
testcase_04 AC 145 ms
53,948 KB
testcase_05 AC 141 ms
53,976 KB
testcase_06 AC 148 ms
54,264 KB
testcase_07 AC 150 ms
54,308 KB
testcase_08 AC 192 ms
54,212 KB
testcase_09 AC 194 ms
54,600 KB
testcase_10 AC 233 ms
57,672 KB
testcase_11 AC 185 ms
54,316 KB
testcase_12 AC 149 ms
54,100 KB
testcase_13 AC 160 ms
54,152 KB
testcase_14 AC 197 ms
54,440 KB
testcase_15 AC 193 ms
54,336 KB
testcase_16 AC 194 ms
54,336 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