結果

問題 No.30 たこやき工場
ユーザー ayame_pyayame_py
提出日時 2015-10-13 04:56:45
言語 Ruby
(3.4.1)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-12-21 05:22:40
合計ジャッジ時間 2,967 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N=gets.to_i
M=gets.to_i
def a(a,b,c)
	return Array.new(a){Array.new(b,c)}
end
$d=a(N,N,-1)
$e=a(N,M,nil)
$c=a(N,M,nil)
$v=Array.new(N,0)
M.times{
	s,q,r=gets.split.map(&:to_i)
	s-=1
	r-=1
	$e[r][$v[r]]=s
	$c[r][$v[r]]=q
	$v[r]+=1
}

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