結果

問題 No.127 門松もどき
ユーザー gigurururugigurururu
提出日時 2015-01-16 22:21:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,175 ms / 5,000 ms
コード長 363 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 95,872 KB
最終ジャッジ日時 2024-06-06 08:24:35
合計ジャッジ時間 14,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,160 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 73 ms
12,160 KB
testcase_03 AC 74 ms
12,032 KB
testcase_04 AC 1,175 ms
95,744 KB
testcase_05 AC 76 ms
12,160 KB
testcase_06 AC 166 ms
18,560 KB
testcase_07 AC 78 ms
12,160 KB
testcase_08 AC 76 ms
12,288 KB
testcase_09 AC 75 ms
12,032 KB
testcase_10 AC 76 ms
12,160 KB
testcase_11 AC 78 ms
12,160 KB
testcase_12 AC 642 ms
56,320 KB
testcase_13 AC 842 ms
71,424 KB
testcase_14 AC 769 ms
66,048 KB
testcase_15 AC 1,049 ms
87,296 KB
testcase_16 AC 745 ms
64,256 KB
testcase_17 AC 832 ms
73,088 KB
testcase_18 AC 713 ms
62,208 KB
testcase_19 AC 458 ms
43,776 KB
testcase_20 AC 463 ms
44,544 KB
testcase_21 AC 256 ms
27,008 KB
testcase_22 AC 1,150 ms
95,872 KB
testcase_23 AC 1,149 ms
95,616 KB
testcase_24 AC 916 ms
76,416 KB
testcase_25 AC 1,066 ms
88,192 KB
testcase_26 AC 562 ms
50,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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