結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー cielciel
提出日時 2017-04-24 00:31:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-22 10:19:04
合計ジャッジ時間 8,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 81 ms
12,416 KB
testcase_02 AC 79 ms
12,288 KB
testcase_03 AC 80 ms
12,416 KB
testcase_04 AC 441 ms
12,800 KB
testcase_05 AC 82 ms
12,416 KB
testcase_06 AC 449 ms
12,672 KB
testcase_07 AC 445 ms
12,672 KB
testcase_08 AC 456 ms
12,672 KB
testcase_09 AC 445 ms
12,672 KB
testcase_10 AC 78 ms
12,160 KB
testcase_11 AC 130 ms
12,800 KB
testcase_12 AC 79 ms
12,032 KB
testcase_13 AC 95 ms
12,544 KB
testcase_14 AC 77 ms
12,416 KB
testcase_15 AC 78 ms
12,416 KB
testcase_16 AC 82 ms
12,288 KB
testcase_17 AC 83 ms
12,288 KB
testcase_18 AC 464 ms
12,544 KB
testcase_19 AC 453 ms
12,800 KB
testcase_20 AC 441 ms
12,672 KB
testcase_21 AC 444 ms
12,544 KB
testcase_22 AC 460 ms
12,672 KB
testcase_23 AC 450 ms
12,416 KB
testcase_24 AC 444 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M=10**9+7;I=[1,1];*F=I;*R=I
2.upto(99){|i|I<<z=(M-M/i)*I[M%i]%M;F<<i*F[-1]%M;R<<z*R[-1]%M}
def dfs(x,y,a)
	r=x!=W||y!=H||(!a.empty?&&a[-1]==0) ? 0 : F[a.reduce(0,:+)]*a.map{|e|R[e]}.reduce(1,:*)%M
	if a.size<A.size
		dx,dy,n=A[a.size]
		(0..n).each{|i|
			r=(r+dfs(x+dx*i,y+dy*i,a+[i]))%M
		}
	end
	r
end
W,H,K=gets.split.map &:to_i
A=K.times.map{gets.split.map &:to_i}
p dfs(0,0,[])
0