結果

問題 No.90 品物の並び替え
ユーザー DialBirdDialBird
提出日時 2017-02-26 14:17:58
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,334 ms / 5,000 ms
コード長 705 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-06-11 16:36:33
合計ジャッジ時間 5,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,288 KB
testcase_01 AC 422 ms
12,544 KB
testcase_02 AC 81 ms
12,160 KB
testcase_03 AC 118 ms
12,416 KB
testcase_04 AC 114 ms
12,544 KB
testcase_05 AC 395 ms
12,288 KB
testcase_06 AC 386 ms
12,416 KB
testcase_07 AC 82 ms
12,288 KB
testcase_08 AC 75 ms
12,160 KB
testcase_09 AC 3,334 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Yukicoder
  def initialize
    @n, @m = gets.chomp.split.map(&:to_i)
    @arr = Array.new(@n) { Array.new(@n, 0) }
    @m.times do
      a, b, c = gets.chomp.split.map(&:to_i)
      @arr[a][b] = c
    end
  end

  def run
    # 最大値
    max = 0    

    # 0〜@n-1で作る列の組み合わせを作成するO(n!)
    (0...@n).to_a.permutation(@n).each do |a|
      # # 9!でarrayを作成するのは厳しい
      # arr_cp = Marshal.load(Marshal.dump(@arr))
      sum = 0
      rest = (0...@n).to_a
      a.each do |i|
        rest.each do |j|
          sum += @arr[i][j]
        end
        rest -= [i]
      end
      max = [sum, max].max
    end
    max
  end
end

puts Yukicoder.new.run
0