結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
11,904 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 93 ms
12,160 KB
testcase_04 AC 1,686 ms
152,832 KB
testcase_05 AC 90 ms
11,904 KB
testcase_06 AC 213 ms
22,784 KB
testcase_07 AC 93 ms
12,160 KB
testcase_08 AC 91 ms
12,160 KB
testcase_09 AC 93 ms
12,032 KB
testcase_10 AC 92 ms
11,904 KB
testcase_11 AC 93 ms
12,032 KB
testcase_12 AC 928 ms
86,272 KB
testcase_13 AC 1,207 ms
111,360 KB
testcase_14 AC 1,106 ms
102,784 KB
testcase_15 AC 1,509 ms
138,240 KB
testcase_16 AC 1,068 ms
99,840 KB
testcase_17 AC 1,224 ms
114,048 KB
testcase_18 AC 1,012 ms
96,384 KB
testcase_19 AC 656 ms
63,488 KB
testcase_20 AC 660 ms
65,024 KB
testcase_21 AC 356 ms
36,096 KB
testcase_22 AC 1,663 ms
152,832 KB
testcase_23 AC 1,670 ms
152,960 KB
testcase_24 AC 1,284 ms
119,808 KB
testcase_25 AC 1,488 ms
139,648 KB
testcase_26 AC 778 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[d-1][l]
    dpr=dpR[d-1][l+1]
    dpL[d][l]=A[l]>=A[r]?dpl:[dpl,dpr+1].max
    dpR[d][l]=A[l]<=A[r]?dpr:[dpr,dpl+1].max
  }
}
p ((0...N).map{|i|dpL[N-1-i][i]}+(0...N).map{|i|dpR[i][0]}).max
0