結果

問題 No.30 たこやき工場
ユーザー ayame_pyayame_py
提出日時 2015-10-13 04:42:12
言語 Ruby
(3.4.1)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-12-21 05:23:13
合計ジャッジ時間 2,691 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,160 KB
testcase_01 AC 95 ms
12,288 KB
testcase_02 AC 99 ms
12,160 KB
testcase_03 AC 98 ms
12,160 KB
testcase_04 AC 98 ms
12,032 KB
testcase_05 AC 94 ms
12,160 KB
testcase_06 AC 99 ms
12,288 KB
testcase_07 AC 96 ms
12,032 KB
testcase_08 AC 101 ms
12,160 KB
testcase_09 AC 101 ms
12,160 KB
testcase_10 AC 129 ms
14,208 KB
testcase_11 AC 98 ms
12,288 KB
testcase_12 AC 94 ms
12,160 KB
testcase_13 AC 98 ms
12,032 KB
testcase_14 AC 97 ms
12,160 KB
testcase_15 AC 99 ms
12,416 KB
testcase_16 AC 98 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N=gets.to_i
M=gets.to_i
$dp=Array.new(N){Array.new(N,-1)}
$e=Array.new(N){Array.new(M)}
$c=Array.new(N){Array.new(M)}
$en=Array.new(N,0)
M.times{
	s,q,r=gets.split.map(&:to_i)
	s-=1
	r-=1
	$e[r][$en[r]]=s
	$c[r][$en[r]]=q
	$en[r]+=1
}

def dfs(n)
	return 0 if $dp[n][0]>=0
	N.times{|i| $dp[n][i]=0}
	if($en[n]==0)
	 	$dp[n][n]=1
	 	return 0
	end
	$en[n].times{|i|
		s=$e[n][i]
		dfs(s)
		N.times{|j| $dp[n][j]+=$dp[s][j]*$c[n][i]}
	}
	return 0
end
dfs(N-1)
(N-1).times{|i| puts $dp[N-1][i]}
0