結果

問題 No.1950 片道きゃっちぼーる
ユーザー pitPpitP
提出日時 2022-05-21 13:52:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 876 ms / 3,000 ms
コード長 571 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 195,328 KB
最終ジャッジ日時 2024-09-20 11:44:47
合計ジャッジ時間 14,844 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 45 ms
54,536 KB
testcase_02 AC 45 ms
55,444 KB
testcase_03 AC 636 ms
163,552 KB
testcase_04 AC 687 ms
163,764 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 AC 467 ms
137,360 KB
testcase_07 AC 436 ms
194,768 KB
testcase_08 AC 664 ms
195,328 KB
testcase_09 AC 651 ms
167,360 KB
testcase_10 AC 755 ms
175,380 KB
testcase_11 AC 726 ms
187,144 KB
testcase_12 AC 717 ms
188,020 KB
testcase_13 AC 628 ms
149,008 KB
testcase_14 AC 588 ms
151,988 KB
testcase_15 AC 867 ms
170,576 KB
testcase_16 AC 497 ms
135,648 KB
testcase_17 AC 43 ms
54,272 KB
testcase_18 AC 663 ms
183,716 KB
testcase_19 AC 876 ms
170,384 KB
testcase_20 AC 536 ms
167,132 KB
testcase_21 AC 652 ms
153,396 KB
testcase_22 AC 620 ms
153,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import heapq


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

for i in range(n):
    d[x[i] + a[i]].append(i)
    d[x[i] - a[i]].append(i)

hq = [(-x[i]-a[i], i) for i in range(n)]
heapq.heapify(hq)


dist = [-1] * n
while hq:
    l,now = heapq.heappop(hq)
    l = -l

    if dist[now] != -1:
        continue

    dist[now] = l
    for nxt in d[x[now]]:
        if dist[nxt] != -1:continue
        heapq.heappush(hq,(-l,nxt))

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