結果

問題 No.1950 片道きゃっちぼーる
ユーザー rlangevinrlangevin
提出日時 2022-08-29 19:30:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,326 bytes
コンパイル時間 723 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 180,244 KB
最終ジャッジ日時 2024-11-06 17:15:56
合計ジャッジ時間 10,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,272 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 45 ms
54,272 KB
testcase_03 AC 310 ms
168,292 KB
testcase_04 AC 314 ms
168,480 KB
testcase_05 AC 45 ms
54,016 KB
testcase_06 AC 225 ms
147,616 KB
testcase_07 AC 279 ms
174,944 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 281 ms
156,940 KB
testcase_12 AC 300 ms
160,024 KB
testcase_13 AC 295 ms
167,364 KB
testcase_14 AC 284 ms
166,456 KB
testcase_15 WA -
testcase_16 AC 238 ms
148,912 KB
testcase_17 WA -
testcase_18 AC 321 ms
169,368 KB
testcase_19 WA -
testcase_20 AC 271 ms
160,268 KB
testcase_21 AC 297 ms
167,192 KB
testcase_22 AC 304 ms
167,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]

    def is_same(self, x, y):
        return self.find(x) == self.find(y)

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]

N = int(input())
X = list(map(int, input().split()))
A = list(map(int, input().split()))
D = defaultdict(lambda:-1)
for i in range(N):
    D[X[i]] = i
    
T = UnionFind(N)
for i in range(N):
    if D[X[i] + A[i]] != -1:
        T.union(i, D[X[i] + A[i]])
    if D[X[i] - A[i]] != -1:
        T.union(i, D[X[i] - A[i]])
        
M = [0] * N
for i in range(N):
    now = T.find(i)
    M[now] = max(M[now], X[i] + A[i])
    
for i in range(N):
    print(M[T.find(i)] - X[i])
    

0