結果

問題 No.484 収穫
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-19 15:48:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,108 ms / 3,000 ms
コード長 312 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 74,752 KB
最終ジャッジ日時 2024-07-17 23:54:27
合計ジャッジ時間 15,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 90 ms
12,288 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 91 ms
12,416 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 97 ms
12,416 KB
testcase_10 AC 99 ms
12,544 KB
testcase_11 AC 99 ms
12,544 KB
testcase_12 AC 1,093 ms
74,624 KB
testcase_13 AC 1,098 ms
74,752 KB
testcase_14 AC 1,104 ms
74,624 KB
testcase_15 AC 1,100 ms
74,496 KB
testcase_16 AC 1,108 ms
74,752 KB
testcase_17 AC 1,092 ms
74,624 KB
testcase_18 AC 1,091 ms
74,496 KB
testcase_19 AC 1,106 ms
74,624 KB
testcase_20 AC 1,106 ms
74,624 KB
testcase_21 AC 1,087 ms
74,496 KB
testcase_22 AC 1,091 ms
74,624 KB
testcase_23 AC 1,099 ms
74,752 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
a=gets.split.map &:to_i
f=2e9
r=0...n
d=r.map{[f]*n}
e=r.map{[f]*n}
d[0][n-1]=e[0][n-1]=0
n.downto(1){|k|(n-k).times{|i|d[i+1][j=i+k]=[d[i+1][j],[[d[i][j],e[i][j]+k].min,a[i]].max+1].min
e[i][j-1]=[d[i][j-1],[[d[i][j]+k,e[i][j]].min,a[j]].max+1].min}}
p r.map{|i|[[d[i][i],e[i][i]].min,a[i]].max}.min
0