結果

問題 No.127 門松もどき
ユーザー gigurururugigurururu
提出日時 2015-01-15 23:28:58
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,247 ms / 5,000 ms
コード長 307 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 152,960 KB
最終ジャッジ日時 2024-06-06 08:18:02
合計ジャッジ時間 25,927 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 92 ms
12,032 KB
testcase_02 AC 90 ms
12,288 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 2,247 ms
152,960 KB
testcase_05 AC 91 ms
12,288 KB
testcase_06 AC 232 ms
23,040 KB
testcase_07 AC 91 ms
12,160 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 91 ms
12,160 KB
testcase_10 AC 91 ms
12,288 KB
testcase_11 AC 94 ms
12,160 KB
testcase_12 AC 1,126 ms
86,272 KB
testcase_13 AC 1,537 ms
111,360 KB
testcase_14 AC 1,399 ms
103,040 KB
testcase_15 AC 1,965 ms
138,240 KB
testcase_16 AC 1,345 ms
99,968 KB
testcase_17 AC 1,565 ms
114,176 KB
testcase_18 AC 1,287 ms
96,384 KB
testcase_19 AC 771 ms
63,488 KB
testcase_20 AC 787 ms
65,024 KB
testcase_21 AC 398 ms
36,224 KB
testcase_22 AC 2,235 ms
152,832 KB
testcase_23 AC 2,219 ms
152,960 KB
testcase_24 AC 1,662 ms
119,936 KB
testcase_25 AC 1,970 ms
139,776 KB
testcase_26 AC 957 ms
74,752 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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