結果

問題 No.241 出席番号(1)
ユーザー hytkxdhytkxd
提出日時 2024-05-08 00:29:09
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 1,364 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-05-08 00:29:16
合計ジャッジ時間 5,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 80 ms
12,160 KB
testcase_10 AC 95 ms
12,160 KB
testcase_11 AC 81 ms
12,160 KB
testcase_12 AC 81 ms
12,160 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 89 ms
12,160 KB
testcase_17 AC 82 ms
12,288 KB
testcase_18 AC 81 ms
12,288 KB
testcase_19 AC 82 ms
12,160 KB
testcase_20 AC 79 ms
12,160 KB
testcase_21 AC 81 ms
12,160 KB
testcase_22 AC 81 ms
12,288 KB
testcase_23 AC 82 ms
12,288 KB
testcase_24 AC 85 ms
12,416 KB
testcase_25 AC 88 ms
12,288 KB
testcase_26 AC 85 ms
12,160 KB
testcase_27 AC 87 ms
12,160 KB
testcase_28 AC 114 ms
12,416 KB
testcase_29 AC 85 ms
12,288 KB
testcase_30 AC 86 ms
12,288 KB
testcase_31 AC 86 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:39: warning: assigned but unused variable - numarr
Main.rb:53: warning: assigned but unused variable - r
Syntax OK

ソースコード

diff #

#!/usr/local/bin/ruby
class BipartiteMatching
  def initialize(n,adj)
    @n,@adj = n,adj # adj is already satisfied with bipartite property.
  end
  private
  def dfs(v)
    rop = false
    @visited[v] = true
    @adj[v].each do |u|
      w = @match[u]
      if w.nil? || (@visited[w].nil? && dfs(w))
        rop,@match[v],@match[u] = true,u,v
        break
      end
    end
    rop
  end
  public
  def matching
    #kuhn algorithm:
    # Start by unsaturated vertex, find an augmenting path, update the matching.
    r = 0
    @match = Array.new(@n)
    (0...@n).each do |i|
      unless @match[i]
        @visited = Array.new(@n)
        if dfs(i)
          r+=1
        end
      end
    end
    [r,@match]
  end
end
class StudentNumber
  def initialize(*arg)
    @n,@a, = arg
    numarr = (@n...2*@n).to_a
    @adj = Array.new(2*@n){Array.new}
    (0...@n).each do |i|
      (0...@a[i]).each do |j|
        @adj[i].push(@n+j)
        @adj[@n+j].push(i)
      end
      (@a[i]+1...@n).each do |j|
        @adj[i].push(@n+j)
        @adj[@n+j].push(i)
      end
    end
  end
  def ans
    r,marr = BipartiteMatching.new(2*@n,@adj).matching
    if marr.any?(nil)
      [-1]
    else
      marr[0,@n].map{_1-@n}
    end
  end
end
### END: class StudentNumber
iod = STDIN
n = iod.gets.to_i
a = Array.new(n){iod.gets.to_i}
puts StudentNumber.new(n,a).ans
exit 0
0