結果

問題 No.1950 片道きゃっちぼーる
ユーザー rlangevinrlangevin
提出日時 2023-06-05 22:38:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 874 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 170,052 KB
最終ジャッジ日時 2024-06-09 05:20:49
合計ジャッジ時間 9,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,740 KB
testcase_01 AC 38 ms
54,312 KB
testcase_02 AC 36 ms
54,920 KB
testcase_03 AC 266 ms
162,136 KB
testcase_04 AC 387 ms
162,284 KB
testcase_05 AC 35 ms
54,592 KB
testcase_06 AC 237 ms
157,476 KB
testcase_07 AC 239 ms
151,968 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 257 ms
165,736 KB
testcase_12 AC 267 ms
165,976 KB
testcase_13 AC 427 ms
170,052 KB
testcase_14 AC 429 ms
169,612 KB
testcase_15 WA -
testcase_16 AC 250 ms
151,636 KB
testcase_17 WA -
testcase_18 AC 412 ms
156,244 KB
testcase_19 AC 756 ms
148,824 KB
testcase_20 AC 251 ms
152,556 KB
testcase_21 AC 415 ms
169,916 KB
testcase_22 AC 413 ms
169,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
def bfs(G, s, N):
    Q = deque([])
    for u in G[s]:
        seen[u] = seen[s]
        Q.append(u)

    while Q:
        u = Q.popleft()
        for v in G[u]:
            if seen[v] != -1:
                continue
            seen[v] = seen[u]
            Q.append(v)

    return seen

N = int(input())
X = list(map(int, input().split()))
A = list(map(int, input().split()))

G = [[] for i in range(N)]
D = defaultdict(int)
for i in range(N):
    D[X[i]] = i
    
for i in range(N):
    if X[i] + A[i] in D:
        G[D[X[i] + A[i]]].append(i)
    if X[i] - A[i] in D:
        G[D[X[i] - A[i]]].append(i)
        
seen = [-1] * N
L = []
for i in range(N):
    L.append((X[i] + A[i], i))
L.sort(reverse=True)

for d, i in L:
    if seen[i] != -1:
        continue
    seen[i] = d
    bfs(G, i, N)
    
for i in range(N):
    print(seen[i] - X[i])
0