結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー harhogefooharhogefoo
提出日時 2016-10-14 23:36:07
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 2,076 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 51,456 KB
最終ジャッジ日時 2024-05-01 22:54:04
合計ジャッジ時間 11,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, k = gets.chomp.split(" ").map(&:to_i)

h_solve = Hash.new(0)
h_penalty = Hash.new(0)
h_univ = Hash.new(0)
h_passed_univ = Hash.new(0)

passed = Array.new

n.times do |i|
  solve, penalty, univ = gets.chomp.split(" ").map(&:to_i)
  h_solve[i] = solve
  h_penalty[i] = penalty
  h_univ[i] = univ
  h_passed_univ[univ] = 0
end


k.times do
  # 最も多く解いたチームを抽出
  solve_max = h_solve.max { |a, b| a[1] <=> b[1] }
  # puts "最大値#{solve_max}"
  best_solve = h_solve.select { |key, v| v ==  solve_max[1] }
  # puts "最大値のチーム: #{best_solve}"
  # puts "通過した大学: #{h_passed_univ}"

  if best_solve.length == 1
    num = best_solve.to_a[0][0]
    passed.push(num)
    h_passed_univ[h_univ[num]] += 1
    h_solve.delete(num)
    h_penalty.delete(num)
    h_univ.delete(num)
    next
  else
    # 今までに選抜された同じ大学のチーム数が少ない
    team = -1
    passed_team_num = -1
    is_same_num = false
    best_solve.each do |k, v|
      # puts "通過した大学: #{h_passed_univ[h_univ[k]]}"
      if passed_team_num == -1
        passed_team_num = h_passed_univ[h_univ[k]]
        team = k
      else
        if h_passed_univ[h_univ[k]] < passed_team_num
          passed_team_num = h_passed_univ[h_univ[k]]
          team = k
          is_same_num = false
        elsif h_passed_univ[h_univ[k]] == passed_team_num
          is_same_num = true
        end
      end
    end

    if !is_same_num and team != -1
      passed.push(team)
      h_passed_univ[h_univ[team]] += 1
      h_solve.delete(team)
      h_penalty.delete(team)
      h_univ.delete(team)
      next
    else
      team = -1
      p = -1
      best_solve.each do |k, v|
        if p == -1
          p = h_penalty[k]
          team = k
        else
          if h_penalty[k] < p
            p = h_penalty[k]
            team = k
          end
        end
      end
      passed.push(team)
      h_passed_univ[h_univ[team]] += 1
      h_solve.delete(team)
      h_penalty.delete(team)
      h_univ.delete(team)
    end
  end
end

puts passed
0