結果

問題 No.90 品物の並び替え
ユーザー gemmarogemmaro
提出日時 2020-07-23 08:13:09
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 360 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 25,888 KB
最終ジャッジ日時 2024-06-23 16:02:26
合計ジャッジ時間 9,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 588 ms
14,464 KB
testcase_02 AC 88 ms
12,288 KB
testcase_03 AC 128 ms
13,312 KB
testcase_04 AC 142 ms
13,824 KB
testcase_05 AC 629 ms
14,336 KB
testcase_06 AC 521 ms
13,952 KB
testcase_07 AC 95 ms
12,672 KB
testcase_08 AC 86 ms
12,160 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

class Hash
  def score
    I.map do |l, r, s|
      self[l] < self[r] ? s : 0
    end.sum
  end
end

def solve
  (0..(N - 1))
    .to_a
    .permutation
    .map { |p| p.map.with_index { |q, i| { q => i } }.reduce(&:merge).score }
    .max
end

N, M = gets.split.map(&:to_i)
I = M.times.map { gets.split.map(&:to_i) }

puts solve
0