結果

問題 No.1365 [Cherry 1st Tune] Whose Fault?
ユーザー chineristACchineristAC
提出日時 2021-01-22 22:37:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 1,936 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 105,604 KB
最終ジャッジ日時 2024-06-09 06:55:18
合計ジャッジ時間 15,094 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 32 ms
52,480 KB
testcase_02 AC 32 ms
52,736 KB
testcase_03 AC 33 ms
52,992 KB
testcase_04 AC 33 ms
52,608 KB
testcase_05 AC 33 ms
52,480 KB
testcase_06 AC 32 ms
53,120 KB
testcase_07 AC 37 ms
53,632 KB
testcase_08 AC 37 ms
52,992 KB
testcase_09 AC 32 ms
52,608 KB
testcase_10 AC 33 ms
52,480 KB
testcase_11 AC 31 ms
52,352 KB
testcase_12 AC 33 ms
53,248 KB
testcase_13 AC 177 ms
79,696 KB
testcase_14 AC 168 ms
79,584 KB
testcase_15 AC 80 ms
77,440 KB
testcase_16 AC 48 ms
69,760 KB
testcase_17 AC 150 ms
78,644 KB
testcase_18 AC 108 ms
78,080 KB
testcase_19 AC 183 ms
79,124 KB
testcase_20 AC 103 ms
77,592 KB
testcase_21 AC 165 ms
79,120 KB
testcase_22 AC 148 ms
78,044 KB
testcase_23 AC 243 ms
93,696 KB
testcase_24 AC 375 ms
97,920 KB
testcase_25 AC 498 ms
101,504 KB
testcase_26 AC 404 ms
98,048 KB
testcase_27 AC 418 ms
94,464 KB
testcase_28 AC 298 ms
84,372 KB
testcase_29 AC 293 ms
84,480 KB
testcase_30 AC 566 ms
103,332 KB
testcase_31 AC 534 ms
105,604 KB
testcase_32 AC 395 ms
100,608 KB
testcase_33 AC 476 ms
98,304 KB
testcase_34 AC 427 ms
93,312 KB
testcase_35 AC 428 ms
97,920 KB
testcase_36 AC 498 ms
104,832 KB
testcase_37 AC 244 ms
82,304 KB
testcase_38 AC 202 ms
100,352 KB
testcase_39 AC 550 ms
103,024 KB
testcase_40 AC 544 ms
100,852 KB
testcase_41 AC 470 ms
103,424 KB
testcase_42 AC 418 ms
94,144 KB
testcase_43 AC 32 ms
52,480 KB
testcase_44 AC 164 ms
103,552 KB
testcase_45 AC 152 ms
91,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFindVerSize():
    def __init__(self, N,init_P,init_S):
        self._parent = [n for n in range(0, N)]
        self.P_sum = [0 for i in range(N)]
        for i in range(N):
            if init_P[i]:
                self.P_sum[i] = 1/init_P[i]
            else:
                self.P_sum[i] = float("inf")
        self.S_sum = [init_S[i] for i in range(N)]
        self._size = [1]*N
        self.group = N
        self.ans = 0
        for i in range(N):
            self.ans += (self.S_sum[i]**2)/self.P_sum[i]

    def find_root(self, x):
        if self._parent[x] == x: return x
        self._parent[x] = self.find_root(self._parent[x])
        stack = [x]
        while self._parent[stack[-1]]!=stack[-1]:
            stack.append(self._parent[stack[-1]])
        for v in stack:
            self._parent[v] = stack[-1]
        return self._parent[x]

    def unite(self, x, y):
        gx = self.find_root(x)
        gy = self.find_root(y)
        if gx == gy: return

        self.group -= 1

        if self._size[gx] >= self._size[gy]:
            gx,gy = gy,gx

        self._parent[gx] = gy
        self._size[gy] += self._size[gx]

        self.ans -= self.S_sum[gx]**2 / self.P_sum[gx]
        self.ans -= self.S_sum[gy]**2 / self.P_sum[gy]

        self.S_sum[gy] += self.S_sum[gx]
        self.P_sum[gy] += self.P_sum[gx]

        self.ans += self.S_sum[gy]**2 / self.P_sum[gy]

    def get_size(self, x):
        return self._size[self.find_root(x)]

    def is_same_group(self, x, y):
        return self.find_root(x) == self.find_root(y)

import sys

input = sys.stdin.readline

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

S = [A[i]-B[i] for i in range(N)]

uf = UnionFindVerSize(N,P,S)
ans = []
for _ in range(int(input())):
    x,y = map(int,input().split())
    uf.unite(x-1,y-1)
    ans.append(uf.ans)

print(*ans,sep="\n")
0