結果
問題 | No.324 落ちてた閉路グラフ |
ユーザー | kura07 |
提出日時 | 2015-12-17 12:19:34 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 687 bytes |
コンパイル時間 | 55 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 20,512 KB |
最終ジャッジ日時 | 2024-09-16 07:28:33 |
合計ジャッジ時間 | 10,101 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
12,416 KB |
testcase_01 | AC | 87 ms
12,160 KB |
testcase_02 | AC | 87 ms
12,288 KB |
testcase_03 | AC | 87 ms
12,288 KB |
testcase_04 | AC | 2,852 ms
12,800 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
n, m = gets.split.map(&:to_i) ws = gets.split.map(&:to_i) memo = Array.new(2){ Array.new(2){ Array.new(m+1, -Float::INFINITY) } } memo[0][0][m] = 0 memo[1][1][m-1] = 0 0.upto(n-2){|i| 0.upto(m){|j| memo[0][0][j] = memo[0][0][j] > memo[0][1][j] ? memo[0][0][j] : memo[0][1][j] memo[0][1][j] = memo[0][0][j+1] > memo[0][1][j+1] + ws[i] ? memo[0][0][j+1] : memo[0][1][j+1] + ws[i] if j < m memo[1][0][j] = memo[1][0][j] > memo[1][1][j] ? memo[1][0][j] : memo[1][1][j] memo[1][1][j] = memo[1][0][j+1] > memo[1][1][j+1] + ws[i] ? memo[1][0][j+1] : memo[1][1][j+1] + ws[i] if j < m } } memo[1][1][0] += ws.last puts [memo[0][0][0], memo[0][1][0], memo[1][0][0], memo[1][1][0]].max