結果

問題 No.90 品物の並び替え
ユーザー DialBirdDialBird
提出日時 2017-02-26 11:49:33
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 618 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,728 KB
最終ジャッジ日時 2024-06-11 16:34:24
合計ジャッジ時間 9,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
25,728 KB
testcase_01 AC 881 ms
12,544 KB
testcase_02 AC 76 ms
12,416 KB
testcase_03 AC 159 ms
12,416 KB
testcase_04 AC 157 ms
12,416 KB
testcase_05 AC 868 ms
12,416 KB
testcase_06 AC 868 ms
12,416 KB
testcase_07 AC 83 ms
12,544 KB
testcase_08 AC 73 ms
12,160 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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|
      arr_cp = Marshal.load(Marshal.dump(@arr))
      sum = 0
      a.each do |i|
        sum += arr_cp[i].inject(:+)
        @n.times { |j| arr_cp[j][i] = 0 }
      end
      max = [sum, max].max
    end
    max
  end
end

puts Yukicoder.new.run
0