結果

問題 No.1950 片道きゃっちぼーる
ユーザー KazunKazun
提出日時 2022-05-20 22:24:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 818 ms / 3,000 ms
コード長 517 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 195,256 KB
最終ジャッジ日時 2024-09-20 08:39:07
合計ジャッジ時間 14,457 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,256 KB
testcase_01 AC 39 ms
55,744 KB
testcase_02 AC 41 ms
54,276 KB
testcase_03 AC 587 ms
163,372 KB
testcase_04 AC 571 ms
163,616 KB
testcase_05 AC 38 ms
54,320 KB
testcase_06 AC 436 ms
137,312 KB
testcase_07 AC 407 ms
194,708 KB
testcase_08 AC 609 ms
195,256 KB
testcase_09 AC 605 ms
167,300 KB
testcase_10 AC 696 ms
174,728 KB
testcase_11 AC 667 ms
187,068 KB
testcase_12 AC 678 ms
187,900 KB
testcase_13 AC 587 ms
149,032 KB
testcase_14 AC 541 ms
151,828 KB
testcase_15 AC 818 ms
169,876 KB
testcase_16 AC 468 ms
135,420 KB
testcase_17 AC 40 ms
54,016 KB
testcase_18 AC 623 ms
183,516 KB
testcase_19 AC 791 ms
170,072 KB
testcase_20 AC 498 ms
167,008 KB
testcase_21 AC 596 ms
153,256 KB
testcase_22 AC 575 ms
153,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from heapq import heapify, heappop, heappush

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)

Q=[(-(X[i]+A[i]), i) for i in range(N)]
heapify(Q)

T=[-1]*N
while Q:
    d,i=heappop(Q); d=-d

    if T[i]!=-1:
        continue

    T[i]=d
    for j in D[X[i]]:
        if T[j]==-1:
            heappush(Q, (-d, j))

for i in range(N):
    print(T[i]-X[i])
0