結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
16,896 KB
testcase_01 AC 211 ms
17,152 KB
testcase_02 AC 135 ms
17,280 KB
testcase_03 AC 105 ms
17,024 KB
testcase_04 AC 108 ms
17,280 KB
testcase_05 AC 129 ms
17,152 KB
testcase_06 AC 114 ms
17,024 KB
testcase_07 AC 113 ms
16,896 KB
testcase_08 AC 105 ms
17,280 KB
testcase_09 AC 128 ms
17,024 KB
testcase_10 AC 1,672 ms
17,408 KB
testcase_11 AC 1,963 ms
17,024 KB
testcase_12 AC 1,766 ms
17,280 KB
testcase_13 AC 580 ms
17,280 KB
testcase_14 AC 1,130 ms
17,280 KB
testcase_15 AC 562 ms
17,024 KB
testcase_16 AC 247 ms
17,024 KB
testcase_17 AC 607 ms
17,280 KB
testcase_18 AC 143 ms
17,152 KB
testcase_19 AC 948 ms
17,024 KB
testcase_20 AC 147 ms
17,280 KB
testcase_21 AC 236 ms
17,280 KB
testcase_22 AC 268 ms
17,280 KB
testcase_23 AC 120 ms
17,152 KB
testcase_24 AC 700 ms
17,408 KB
testcase_25 AC 458 ms
17,280 KB
testcase_26 AC 687 ms
16,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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