結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,032 KB
testcase_01 AC 91 ms
11,904 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 88 ms
11,904 KB
testcase_04 AC 1,323 ms
95,744 KB
testcase_05 AC 90 ms
11,904 KB
testcase_06 AC 190 ms
18,688 KB
testcase_07 AC 94 ms
12,160 KB
testcase_08 AC 88 ms
12,160 KB
testcase_09 AC 92 ms
11,904 KB
testcase_10 AC 92 ms
12,160 KB
testcase_11 AC 96 ms
12,032 KB
testcase_12 AC 741 ms
56,064 KB
testcase_13 AC 962 ms
71,424 KB
testcase_14 AC 866 ms
66,176 KB
testcase_15 AC 1,186 ms
87,424 KB
testcase_16 AC 861 ms
64,384 KB
testcase_17 AC 962 ms
72,960 KB
testcase_18 AC 798 ms
62,208 KB
testcase_19 AC 526 ms
43,648 KB
testcase_20 AC 540 ms
44,672 KB
testcase_21 AC 292 ms
27,008 KB
testcase_22 AC 1,306 ms
95,616 KB
testcase_23 AC 1,295 ms
95,488 KB
testcase_24 AC 1,046 ms
76,416 KB
testcase_25 AC 1,204 ms
88,192 KB
testcase_26 AC 631 ms
49,920 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