結果

問題 No.324 落ちてた閉路グラフ
ユーザー cielciel
提出日時 2017-01-19 15:39:33
言語 Crystal
(1.11.2)
結果
AC  
実行時間 258 ms / 5,000 ms
コード長 528 bytes
コンパイル時間 11,600 ms
コンパイル使用メモリ 295,908 KB
実行使用メモリ 159,948 KB
最終ジャッジ日時 2024-06-30 19:11:17
合計ジャッジ時間 16,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
159,408 KB
testcase_01 AC 57 ms
159,372 KB
testcase_02 AC 57 ms
159,308 KB
testcase_03 AC 58 ms
159,268 KB
testcase_04 AC 258 ms
159,800 KB
testcase_05 AC 73 ms
159,876 KB
testcase_06 AC 236 ms
159,720 KB
testcase_07 AC 139 ms
159,708 KB
testcase_08 AC 247 ms
159,772 KB
testcase_09 AC 157 ms
159,948 KB
testcase_10 AC 245 ms
159,752 KB
testcase_11 AC 156 ms
159,764 KB
testcase_12 AC 58 ms
159,560 KB
testcase_13 AC 59 ms
159,508 KB
testcase_14 AC 57 ms
159,568 KB
testcase_15 AC 59 ms
159,552 KB
testcase_16 AC 58 ms
159,356 KB
testcase_17 AC 58 ms
159,304 KB
testcase_18 AC 57 ms
159,332 KB
testcase_19 AC 57 ms
159,232 KB
testcase_20 AC 57 ms
159,304 KB
testcase_21 AC 56 ms
159,276 KB
testcase_22 AC 56 ms
159,404 KB
testcase_23 AC 58 ms
159,304 KB
testcase_24 AC 56 ms
159,348 KB
testcase_25 AC 57 ms
159,284 KB
testcase_26 AC 58 ms
159,312 KB
testcase_27 AC 57 ms
159,304 KB
testcase_28 AC 58 ms
159,348 KB
testcase_29 AC 58 ms
159,284 KB
testcase_30 AC 58 ms
159,304 KB
testcase_31 AC 58 ms
159,308 KB
testcase_32 AC 102 ms
159,816 KB
testcase_33 AC 201 ms
159,720 KB
testcase_34 AC 202 ms
159,712 KB
testcase_35 AC 57 ms
159,412 KB
testcase_36 AC 111 ms
159,580 KB
testcase_37 AC 57 ms
159,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env crystal
MIN=-100000000
Memo=Array(Int32).new(40000000,MIN)
def dfs(n,w,z,prev,cur,remain)
	key=z*20000000+prev*10000000+cur*3100+remain
	if remain<0 || remain>n-cur
		MIN
	elsif cur==n
		w[cur-1]*prev*z
	elsif Memo[key]!=MIN
		Memo[key]
	else
		r1=dfs(n,w,z,0,cur+1,remain)
		r2=dfs(n,w,z,1,cur+1,remain-1)+w[cur-1]*prev
		Memo[key] = r1>r2 ? r1 : r2
	end
end
n,m=gets.not_nil!.split.map(&.to_i)
w=gets.not_nil!.split.map(&.to_i)
if m<2
	p 0
else
	r1=dfs(n,w,0,0,1,m)
	r2=dfs(n,w,1,1,1,m-1)
	p r1>r2 ? r1 : r2
end
0