結果

問題 No.127 門松もどき
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-21 00:20:38
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,644 ms / 5,000 ms
コード長 238 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 195,328 KB
最終ジャッジ日時 2024-06-06 08:35:23
合計ジャッジ時間 20,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,416 KB
testcase_01 AC 100 ms
12,416 KB
testcase_02 AC 92 ms
12,416 KB
testcase_03 AC 92 ms
12,032 KB
testcase_04 AC 1,640 ms
195,072 KB
testcase_05 AC 93 ms
12,032 KB
testcase_06 AC 250 ms
54,784 KB
testcase_07 AC 94 ms
15,744 KB
testcase_08 AC 93 ms
13,824 KB
testcase_09 AC 91 ms
13,568 KB
testcase_10 AC 90 ms
13,184 KB
testcase_11 AC 97 ms
18,816 KB
testcase_12 AC 938 ms
136,704 KB
testcase_13 AC 1,230 ms
160,512 KB
testcase_14 AC 1,150 ms
152,448 KB
testcase_15 AC 1,499 ms
183,552 KB
testcase_16 AC 1,092 ms
149,760 KB
testcase_17 AC 1,241 ms
162,816 KB
testcase_18 AC 1,029 ms
146,432 KB
testcase_19 AC 701 ms
113,408 KB
testcase_20 AC 716 ms
114,688 KB
testcase_21 AC 400 ms
77,952 KB
testcase_22 AC 1,635 ms
195,328 KB
testcase_23 AC 1,644 ms
195,072 KB
testcase_24 AC 1,301 ms
167,680 KB
testcase_25 AC 1,504 ms
184,704 KB
testcase_26 AC 815 ms
125,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i+1
a=[0]+gets.split.map(&:to_i)+[0]
l=(0..n).map{[0]*3005}
r=(0..n).map{[0]*3005}
(1..n).map{|w|(0..n-w).map{|i|s=a[i]-a[i+w];x=l[w-1][i+1];y=r[w-1][i];l[w][i]=s>0?y<x ?x:y+1:x;r[w][i]=s<0?x<y ?y:x+1:y}}
p [l[n][0],r[n][0]].max
0