結果

問題 No.2301 Namorientation
ユーザー simansiman
提出日時 2023-05-16 14:41:51
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 1,241 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 89,648 KB
最終ジャッジ日時 2024-05-08 11:27:31
合計ジャッジ時間 27,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,416 KB
testcase_01 AC 81 ms
12,160 KB
testcase_02 AC 81 ms
12,288 KB
testcase_03 AC 82 ms
12,288 KB
testcase_04 AC 80 ms
12,032 KB
testcase_05 AC 83 ms
12,160 KB
testcase_06 AC 78 ms
12,288 KB
testcase_07 AC 84 ms
12,160 KB
testcase_08 AC 80 ms
12,288 KB
testcase_09 AC 84 ms
12,288 KB
testcase_10 AC 86 ms
12,288 KB
testcase_11 AC 83 ms
12,160 KB
testcase_12 AC 744 ms
59,008 KB
testcase_13 AC 618 ms
56,576 KB
testcase_14 AC 1,144 ms
89,336 KB
testcase_15 AC 900 ms
64,512 KB
testcase_16 AC 1,074 ms
82,252 KB
testcase_17 AC 726 ms
60,288 KB
testcase_18 AC 1,034 ms
84,172 KB
testcase_19 AC 624 ms
56,064 KB
testcase_20 AC 1,076 ms
82,736 KB
testcase_21 AC 791 ms
62,848 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 757 ms
57,392 KB
testcase_26 AC 963 ms
65,876 KB
testcase_27 AC 1,224 ms
89,580 KB
testcase_28 AC 1,211 ms
89,496 KB
testcase_29 AC 1,205 ms
89,588 KB
testcase_30 AC 1,287 ms
89,512 KB
testcase_31 AC 1,328 ms
89,648 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:37: warning: assigned but unused variable - f
Syntax OK

ソースコード

diff #

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
0