結果

問題 No.783 門松計画
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-01-19 10:01:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,835 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-07-23 12:20:56
合計ジャッジ時間 14,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
17,152 KB
testcase_01 AC 198 ms
17,280 KB
testcase_02 AC 135 ms
17,152 KB
testcase_03 AC 103 ms
17,408 KB
testcase_04 AC 110 ms
17,280 KB
testcase_05 AC 126 ms
17,152 KB
testcase_06 AC 112 ms
17,280 KB
testcase_07 AC 116 ms
17,152 KB
testcase_08 AC 105 ms
17,280 KB
testcase_09 AC 126 ms
17,408 KB
testcase_10 AC 1,571 ms
17,280 KB
testcase_11 AC 1,835 ms
17,280 KB
testcase_12 AC 1,651 ms
17,280 KB
testcase_13 AC 543 ms
17,280 KB
testcase_14 AC 1,062 ms
17,152 KB
testcase_15 AC 541 ms
17,152 KB
testcase_16 AC 239 ms
17,280 KB
testcase_17 AC 568 ms
17,408 KB
testcase_18 AC 138 ms
17,152 KB
testcase_19 AC 898 ms
17,280 KB
testcase_20 AC 138 ms
17,280 KB
testcase_21 AC 227 ms
17,280 KB
testcase_22 AC 257 ms
17,152 KB
testcase_23 AC 115 ms
17,280 KB
testcase_24 AC 666 ms
17,280 KB
testcase_25 AC 438 ms
17,152 KB
testcase_26 AC 646 ms
17,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,c=gets.split.map &:to_i
l=gets.split.map &:to_i
w=gets.split.map &:to_i
c+=1
r=0..50
d=(0..150).map{r.map{[0]*51}}
n.times{|i|n.times{|j|n.times{|k|d[b=w[i]+w[j]+w[k]][y=l[j]][z=l[k]]=[d[b][y][z],(x=l[i])!=z&&0<(x-y)*(z-y)?x+y+z:0].max}}}
c.times{|a|r.each{|x|r.each{|y|n.times{|i|d[b=a+w[i]][y][z=l[i]]=[d[b][y][z],(e=d[a][x][y])>0&&x!=z&&0<(x-y)*(z-y)?e+z:0].max}}}}
p d[0,c].map{|f|f.map(&:max).max}.max
0