結果

問題 No.1950 片道きゃっちぼーる
ユーザー qibqib
提出日時 2022-11-28 00:01:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 852 ms / 3,000 ms
コード長 876 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 263,192 KB
最終ジャッジ日時 2024-10-04 16:10:41
合計ジャッジ時間 12,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,476 KB
testcase_01 AC 34 ms
54,056 KB
testcase_02 AC 34 ms
52,964 KB
testcase_03 AC 483 ms
263,192 KB
testcase_04 AC 470 ms
257,180 KB
testcase_05 AC 35 ms
52,004 KB
testcase_06 AC 251 ms
193,424 KB
testcase_07 AC 414 ms
239,876 KB
testcase_08 AC 852 ms
249,784 KB
testcase_09 AC 452 ms
253,668 KB
testcase_10 AC 507 ms
223,716 KB
testcase_11 AC 473 ms
221,160 KB
testcase_12 AC 470 ms
221,196 KB
testcase_13 AC 361 ms
212,064 KB
testcase_14 AC 311 ms
195,028 KB
testcase_15 AC 727 ms
224,528 KB
testcase_16 AC 259 ms
187,980 KB
testcase_17 AC 34 ms
52,220 KB
testcase_18 AC 549 ms
260,608 KB
testcase_19 AC 761 ms
224,556 KB
testcase_20 AC 468 ms
223,668 KB
testcase_21 AC 347 ms
222,216 KB
testcase_22 AC 337 ms
222,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

n = int(input())
x = list(map(int, input().split()))
a = list(map(int, input().split()))

s = set()
for i in range(n):
  s.add(x[i])
  s.add(x[i] - a[i])
  s.add(x[i] + a[i])

xs = sorted(list(s))
idx = {}
for i in range(len(xs)):
  idx[xs[i]] = i

g = [[] for _ in range(len(xs))]
deg = [0 for _ in range(len(xs))]
for i in range(n):
  v = idx[x[i]]
  u = idx[x[i] - a[i]]
  w = idx[x[i] + a[i]]
  g[w].append(v)
  g[u].append(v)
  deg[v] += 1
  deg[v] += 1

dist = [INF for _ in range(len(xs))]
par = [None for _ in range(len(xs))]
st = []
for v in range(len(xs)):
  if deg[v] == 0:
    dist[v] = 0
    par[v] = v
    st.append(v)

while len(st) > 0:
  cur = st.pop()
  for nxt in g[cur]:
    if not par[nxt] is None:
      continue
    par[nxt] = par[cur]
    dist[nxt] = xs[par[nxt]] - xs[nxt]
    st.append(nxt)

for i in range(n):
  print(dist[idx[x[i]]])
0