結果

問題 No.2301 Namorientation
ユーザー simansiman
提出日時 2023-05-16 15:00:07
言語 Ruby
(3.3.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,500 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-05-08 11:38:17
合計ジャッジ時間 7,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:40: warning: assigned but unused variable - f
Syntax OK

ソースコード

diff #

if !ENV['RUBY_THREAD_VM_STACK_SIZE']
  exec({'RUBY_THREAD_VM_STACK_SIZE'=>'1000000000'}, '/usr/bin/ruby', $0)
else
  N = gets.to_i

  O = Hash.new { |h, k| h[k] = {} }
  E = Array.new(N + 1) { [] }
  OE = []

  N.times do
    a, b = gets.split.map(&:to_i)
    E[a] << b
    E[b] << a
    OE << [a, b]
  end

  def find_loop(v, par, path, visited)
    if visited[v]
      from = path.index(v)
      return [path[from..], true]
    end

    visited[v] = true
    path << v

    E[v].each do |u|
      next if u == par

      res, found = find_loop(u, v, path, visited)
      if found
        return [res, found]
      end
    end

    path.pop
  end

  path = []
  visited = Array.new(N + 1, false)
  loop_path, f = find_loop(1, nil, path, visited)
  queue = []

  visited = Array.new(N + 1, false)
  n = loop_path.size
  n.times do |i|
    a = loop_path[i]
    b = loop_path[(i + 1) % n]

    queue << a
    visited[a] = true
    O[a][b] = 1
  end

  until queue.empty?
    v = queue.shift

    E[v].each do |u|
      next if visited[u]
      visited[u] = true

      O[v][u] = 1
      queue << u
    end
  end

  1.upto(N) do |n|
    next if visited[n]
    queue << n

    until queue.empty?
      v = queue.shift

      E[v].each do |u|
        next if visited[u]
        visited[u] = true

        O[v][u] = 1
      end
    end
  end

  counter = Hash.new(0)

  OE.each do |a, b|
    if O[a][b]
      counter[b] += 1
      puts '<-'
    else
      counter[a] += 1
      puts '->'
    end
  end
end
0