結果

問題 No.1950 片道きゃっちぼーる
ユーザー とりゐとりゐ
提出日時 2022-05-20 22:20:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,111 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 168,196 KB
最終ジャッジ日時 2024-09-20 08:34:02
合計ジャッジ時間 7,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,140 KB
testcase_01 AC 40 ms
54,292 KB
testcase_02 AC 39 ms
55,372 KB
testcase_03 AC 222 ms
166,820 KB
testcase_04 AC 215 ms
167,016 KB
testcase_05 AC 37 ms
54,008 KB
testcase_06 AC 188 ms
149,676 KB
testcase_07 AC 189 ms
151,668 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 226 ms
157,680 KB
testcase_12 AC 236 ms
160,220 KB
testcase_13 AC 230 ms
165,380 KB
testcase_14 AC 231 ms
164,624 KB
testcase_15 WA -
testcase_16 AC 196 ms
146,148 KB
testcase_17 WA -
testcase_18 AC 246 ms
167,604 KB
testcase_19 WA -
testcase_20 AC 213 ms
160,372 KB
testcase_21 AC 255 ms
165,496 KB
testcase_22 AC 274 ms
165,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#UnionFind
from collections import defaultdict

class UnionFind():
    def __init__(self, n, R):
        self.n = n
        self.parents = [-1] * n
        self.R=R

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x
        mx=max(self.R[x],self.R[y])
        self.R[x],self.R[y]=mx,mx

        self.parents[x] += self.parents[y]
        self.parents[y] = x

    def size(self, x):
        return -self.parents[self.find(x)]


n=int(input())
x=list(map(int,input().split()))
a=list(map(int,input().split()))
uf=UnionFind(n,[a[i]+x[i] for i in range(n)])

id={}
for i in range(n):
  id[x[i]]=i

for i in range(n):
  xi,ai=x[i],a[i]
  if xi-ai in id:
    j=id[xi-ai]
    uf.union(i,j)
  if xi+ai in id:
    j=id[xi+ai]
    uf.union(i,j)

for i in range(n):
  j=uf.find(i)
  print(uf.R[j]-x[i])
0