結果

問題 No.1950 片道きゃっちぼーる
ユーザー simansiman
提出日時 2022-05-28 01:34:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,599 ms / 3,000 ms
コード長 500 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 152,368 KB
最終ジャッジ日時 2024-09-20 19:18:44
合計ジャッジ時間 23,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,032 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 74 ms
12,032 KB
testcase_03 AC 1,106 ms
108,548 KB
testcase_04 AC 1,097 ms
108,428 KB
testcase_05 AC 74 ms
12,032 KB
testcase_06 AC 715 ms
58,336 KB
testcase_07 AC 1,458 ms
145,420 KB
testcase_08 AC 1,599 ms
152,368 KB
testcase_09 AC 1,157 ms
108,188 KB
testcase_10 AC 1,016 ms
108,456 KB
testcase_11 AC 1,011 ms
97,708 KB
testcase_12 AC 992 ms
97,612 KB
testcase_13 AC 915 ms
90,116 KB
testcase_14 AC 860 ms
62,880 KB
testcase_15 AC 1,301 ms
108,360 KB
testcase_16 AC 762 ms
61,584 KB
testcase_17 AC 74 ms
12,032 KB
testcase_18 AC 1,270 ms
117,396 KB
testcase_19 AC 1,290 ms
108,160 KB
testcase_20 AC 1,004 ms
97,828 KB
testcase_21 AC 882 ms
65,552 KB
testcase_22 AC 846 ms
65,632 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
X = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
E = Hash.new { |h, k| h[k] = [] }

max_v = Hash.new(0)

N.times do |i|
  x = X[i]
  a = A[i]

  E[x - a] << x
  E[x + a] << x
end

visited = Hash.new(false)

E.keys.sort.reverse_each do |cv|
  queue = []
  queue << cv

  until queue.empty?
    v = queue.shift

    next if visited[v]
    visited[v] = true

    max_v[v] = cv if max_v[v] < cv

    E[v].each do |u|
      queue << u
    end
  end
end

puts X.map { |x| max_v[x] - x }
0