結果

問題 No.1950 片道きゃっちぼーる
ユーザー noriocnorioc
提出日時 2024-07-15 08:55:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,131 ms / 3,000 ms
コード長 871 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 386,364 KB
最終ジャッジ日時 2024-07-15 08:55:30
合計ジャッジ時間 14,426 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,664 KB
testcase_01 AC 36 ms
55,268 KB
testcase_02 AC 39 ms
55,332 KB
testcase_03 AC 1,131 ms
385,392 KB
testcase_04 AC 750 ms
386,364 KB
testcase_05 AC 38 ms
55,120 KB
testcase_06 AC 696 ms
384,476 KB
testcase_07 AC 247 ms
163,136 KB
testcase_08 AC 499 ms
156,924 KB
testcase_09 AC 433 ms
170,820 KB
testcase_10 AC 349 ms
170,744 KB
testcase_11 AC 296 ms
179,740 KB
testcase_12 AC 313 ms
180,184 KB
testcase_13 AC 450 ms
163,844 KB
testcase_14 AC 475 ms
169,460 KB
testcase_15 AC 1,032 ms
308,924 KB
testcase_16 AC 537 ms
284,172 KB
testcase_17 AC 39 ms
55,856 KB
testcase_18 AC 412 ms
164,596 KB
testcase_19 AC 929 ms
247,780 KB
testcase_20 AC 293 ms
160,336 KB
testcase_21 AC 415 ms
162,972 KB
testcase_22 AC 408 ms
163,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
from collections import defaultdict
import sys
sys.setrecursionlimit(10 ** 6)

INF = 1 << 60
N = int(input())
X = list(map(int, input().split()))
A = list(map(int, input().split()))

x2i = {X[i]: i for i in range(N)}

# 逆辺 : 人 i へ到達する人リスト
adj = defaultdict(list)
for i, (x, a) in enumerate(zip(X, A)):
    for xa in [x+a, x-a]:
        p = x2i.get(xa, -1)
        if p != -1:
            adj[p].append(i)


memo = {}
# 人 p 繋がっている人は距離 x まで到達できる
def dfs(p, x):
    if p in memo: return
    memo[p] = x
    for to in adj[p]:
        dfs(to, x)


# 各地点からの飛距離が大きい順に確定していく
for i, xa in sorted([(i, X[i]+A[i]) for i in range(N)], key=lambda x: x[1], reverse=True):
    dfs(i, xa)

for i in range(N):
    ans = memo[i] - X[i]
    print(ans)
0