結果

問題 No.1950 片道きゃっちぼーる
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-05-20 21:28:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 865 ms / 3,000 ms
コード長 1,411 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 169,520 KB
最終ジャッジ日時 2024-09-20 07:18:40
合計ジャッジ時間 11,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,016 KB
testcase_01 AC 39 ms
54,016 KB
testcase_02 AC 39 ms
53,888 KB
testcase_03 AC 279 ms
168,832 KB
testcase_04 AC 371 ms
168,968 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 268 ms
157,344 KB
testcase_07 AC 264 ms
150,416 KB
testcase_08 AC 751 ms
158,492 KB
testcase_09 AC 309 ms
167,920 KB
testcase_10 AC 471 ms
160,632 KB
testcase_11 AC 273 ms
158,216 KB
testcase_12 AC 291 ms
158,212 KB
testcase_13 AC 439 ms
169,520 KB
testcase_14 AC 440 ms
169,088 KB
testcase_15 AC 840 ms
160,524 KB
testcase_16 AC 266 ms
150,648 KB
testcase_17 AC 43 ms
53,760 KB
testcase_18 AC 396 ms
167,304 KB
testcase_19 AC 865 ms
160,520 KB
testcase_20 AC 265 ms
158,732 KB
testcase_21 AC 425 ms
169,348 KB
testcase_22 AC 391 ms
169,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin
from collections import deque

def uf_find(n,p):

    ufl = []

    while p[n] != n:
        ufl.append(n)
        n = p[n]

    for i in ufl:
        p[i] = n

    return n


def uf_union(a,b,p,rank):

    ap = uf_find(a,p)
    bp = uf_find(b,p)

    if ap == bp:
        return True
    else:

        if rank[ap] > rank[bp]:
            p[bp] = ap
        elif rank[ap] < rank[bp]:
            p[ap] = bp
        else:
            p[bp] = ap
            rank[ap] += 1

        return False

N = int(stdin.readline())

X = list(map(int,stdin.readline().split()))
A = list(map(int,stdin.readline().split()))

dic = {}

for i in range(N):
    dic[X[i]] = i

lis = [ [] for i in range(N)]

for i in range(N):

    lx = X[i] - A[i]
    if lx in dic:
        nex = dic[lx]
        lis[nex].append(i)

    lx = X[i] + A[i]
    if lx in dic:
        nex = dic[lx]
        lis[nex].append(i)

q = deque()
    
B = [None for i in range(N)]

wow = [ (X[i]+A[i],i) for i in range(N) ]
wow.sort()
wow.reverse()

for dist,ind in wow:

    if B[ind] == None:
        q.append(ind)
        B[ind] = dist

        while q:
            v = q.popleft()
            for nex in lis[v]:
                if B[nex] == None:
                    B[nex] = B[v]
                    q.append(nex)

#print (B)
ANS  = []
for i in range(N):
    ANS.append(str(B[i]-X[i]))

print ("\n".join(ANS))
0