結果

問題 No.127 門松もどき
ユーザー gigurururugigurururu
提出日時 2015-01-15 23:42:12
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,940 ms / 5,000 ms
コード長 307 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 152,960 KB
最終ジャッジ日時 2024-06-06 08:20:37
合計ジャッジ時間 22,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,416 KB
testcase_01 AC 80 ms
12,160 KB
testcase_02 AC 80 ms
12,032 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 1,940 ms
152,832 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 210 ms
22,784 KB
testcase_07 AC 81 ms
12,032 KB
testcase_08 AC 80 ms
12,160 KB
testcase_09 AC 82 ms
12,288 KB
testcase_10 AC 81 ms
12,160 KB
testcase_11 AC 86 ms
12,288 KB
testcase_12 AC 1,014 ms
86,016 KB
testcase_13 AC 1,359 ms
111,488 KB
testcase_14 AC 1,245 ms
103,040 KB
testcase_15 AC 1,711 ms
138,368 KB
testcase_16 AC 1,209 ms
99,712 KB
testcase_17 AC 1,381 ms
114,304 KB
testcase_18 AC 1,138 ms
96,640 KB
testcase_19 AC 678 ms
63,616 KB
testcase_20 AC 710 ms
64,896 KB
testcase_21 AC 352 ms
36,096 KB
testcase_22 AC 1,936 ms
152,832 KB
testcase_23 AC 1,922 ms
152,960 KB
testcase_24 AC 1,493 ms
120,064 KB
testcase_25 AC 1,739 ms
139,904 KB
testcase_26 AC 839 ms
74,752 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N=gets.to_i
A=gets.split.map(&:to_i)
dpR=(1..N).map{[1]*N}
dpL=(1..N).map{[1]*N}
(1...N).each{|d|
  (0...N-d).each{|l|
    r=l+d
    dpl=dpL[l][r-1]
    dpr=dpR[l+1][r]
    dpL[l][r]=A[l]>=A[r]?dpl:[dpl,dpr+1].max
    dpR[l][r]=A[l]<=A[r]?dpr:[dpr,dpl+1].max
  }
}
p ((0...N).map{|i|dpL[i][N-1]}+dpR[0]).max
0