結果

問題 No.2680 研究室配属
ユーザー ducktailducktail
提出日時 2024-08-01 23:35:23
言語 Ruby
(3.3.0)
結果
AC  
実行時間 926 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-08-01 23:35:34
合計ジャッジ時間 10,735 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 91 ms
12,288 KB
testcase_04 AC 96 ms
12,288 KB
testcase_05 AC 114 ms
17,408 KB
testcase_06 AC 124 ms
17,408 KB
testcase_07 AC 121 ms
17,408 KB
testcase_08 AC 117 ms
14,976 KB
testcase_09 AC 104 ms
13,824 KB
testcase_10 AC 210 ms
14,464 KB
testcase_11 AC 201 ms
14,720 KB
testcase_12 AC 254 ms
15,104 KB
testcase_13 AC 203 ms
15,104 KB
testcase_14 AC 252 ms
15,104 KB
testcase_15 AC 118 ms
14,208 KB
testcase_16 AC 475 ms
17,536 KB
testcase_17 AC 172 ms
18,176 KB
testcase_18 AC 318 ms
16,000 KB
testcase_19 AC 573 ms
18,816 KB
testcase_20 AC 502 ms
17,920 KB
testcase_21 AC 140 ms
15,616 KB
testcase_22 AC 381 ms
16,896 KB
testcase_23 AC 926 ms
23,040 KB
testcase_24 AC 917 ms
23,168 KB
testcase_25 AC 917 ms
23,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

module LaboratoryAssignment
  def solve(n, m, aa, at)
    lab = Array.new(n)
    val = Array.new(n)
    (0 ... m).each do |i|
      (0 ... n).each do |j|
        next if val[j]
        if aa[at[j][i]] > 0
          lab[j] = at[j][i]
          aa[at[j][i]] -= 1
          val[j] = true
        end
      end
    end
    lab
  end
  module_function :solve
end

n, m = gets.chomp.split(/\s+/).map(&:to_i)
aa = gets.chomp.split(/\s+/).map(&:to_i)
at = n.times.map{ gets.chomp.split(/\s+/).map(&:to_i) }
  
puts LaboratoryAssignment.solve(n, m, aa, at).join(" ")
0