結果

問題 No.1950 片道きゃっちぼーる
ユーザー roarisroaris
提出日時 2022-05-20 21:25:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,472 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 218,564 KB
最終ジャッジ日時 2024-09-20 07:12:42
合計ジャッジ時間 10,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,608 KB
testcase_01 AC 38 ms
55,916 KB
testcase_02 AC 38 ms
55,580 KB
testcase_03 AC 333 ms
165,820 KB
testcase_04 AC 322 ms
165,880 KB
testcase_05 AC 39 ms
54,532 KB
testcase_06 AC 289 ms
143,768 KB
testcase_07 AC 274 ms
218,564 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 316 ms
160,796 KB
testcase_12 AC 333 ms
160,324 KB
testcase_13 AC 363 ms
164,924 KB
testcase_14 AC 346 ms
164,376 KB
testcase_15 WA -
testcase_16 AC 301 ms
144,684 KB
testcase_17 WA -
testcase_18 AC 338 ms
166,596 KB
testcase_19 WA -
testcase_20 AC 290 ms
191,968 KB
testcase_21 AC 373 ms
165,388 KB
testcase_22 AC 384 ms
165,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
    
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

N = int(input())
X = list(map(int, input().split()))
d = defaultdict(lambda: -1)

for i in range(N):
    d[X[i]] = i
    
A = list(map(int, input().split()))
uf = Unionfind(N)

for i in range(N):
    if d[X[i]+A[i]]!=-1:
        uf.unite(i, d[X[i]+A[i]])
    
    if d[X[i]-A[i]]!=-1:
        uf.unite(i, d[X[i]-A[i]])

res = defaultdict(int)

for i in range(N):
    res[uf.root(i)] = max(res[uf.root(i)], X[i]+A[i])

for i in range(N):
    print(res[uf.root(i)]-X[i])
0