結果
問題 | No.1365 [Cherry 1st Tune] Whose Fault? |
ユーザー | chineristAC |
提出日時 | 2021-01-22 21:47:00 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 761 ms / 2,000 ms |
コード長 | 2,130 bytes |
コンパイル時間 | 362 ms |
コンパイル使用メモリ | 82,112 KB |
実行使用メモリ | 106,792 KB |
最終ジャッジ日時 | 2024-06-09 06:51:07 |
合計ジャッジ時間 | 19,151 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,864 KB |
testcase_01 | AC | 38 ms
52,480 KB |
testcase_02 | AC | 42 ms
52,352 KB |
testcase_03 | AC | 44 ms
53,072 KB |
testcase_04 | AC | 43 ms
53,120 KB |
testcase_05 | AC | 55 ms
53,796 KB |
testcase_06 | AC | 41 ms
53,820 KB |
testcase_07 | AC | 40 ms
54,064 KB |
testcase_08 | AC | 40 ms
54,396 KB |
testcase_09 | AC | 38 ms
52,876 KB |
testcase_10 | AC | 39 ms
53,472 KB |
testcase_11 | AC | 38 ms
53,604 KB |
testcase_12 | AC | 40 ms
54,056 KB |
testcase_13 | AC | 224 ms
79,940 KB |
testcase_14 | AC | 215 ms
79,004 KB |
testcase_15 | AC | 110 ms
77,188 KB |
testcase_16 | AC | 62 ms
70,272 KB |
testcase_17 | AC | 189 ms
78,576 KB |
testcase_18 | AC | 142 ms
78,336 KB |
testcase_19 | AC | 223 ms
79,116 KB |
testcase_20 | AC | 126 ms
77,672 KB |
testcase_21 | AC | 218 ms
79,080 KB |
testcase_22 | AC | 193 ms
78,704 KB |
testcase_23 | AC | 324 ms
94,416 KB |
testcase_24 | AC | 522 ms
98,176 KB |
testcase_25 | AC | 682 ms
101,120 KB |
testcase_26 | AC | 566 ms
97,664 KB |
testcase_27 | AC | 562 ms
92,840 KB |
testcase_28 | AC | 378 ms
84,828 KB |
testcase_29 | AC | 385 ms
85,072 KB |
testcase_30 | AC | 761 ms
103,936 KB |
testcase_31 | AC | 724 ms
106,792 KB |
testcase_32 | AC | 565 ms
100,992 KB |
testcase_33 | AC | 642 ms
97,664 KB |
testcase_34 | AC | 559 ms
92,800 KB |
testcase_35 | AC | 487 ms
96,640 KB |
testcase_36 | AC | 679 ms
104,704 KB |
testcase_37 | AC | 341 ms
83,592 KB |
testcase_38 | AC | 269 ms
100,096 KB |
testcase_39 | AC | 723 ms
103,124 KB |
testcase_40 | AC | 726 ms
101,640 KB |
testcase_41 | AC | 658 ms
103,168 KB |
testcase_42 | AC | 558 ms
95,020 KB |
testcase_43 | AC | 39 ms
52,736 KB |
testcase_44 | AC | 196 ms
103,808 KB |
testcase_45 | AC | 205 ms
91,620 KB |
ソースコード
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] 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): if self.P_sum[i]!=0: 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] if self.P_sum[gx]!=0: self.ans -= self.S_sum[gx]**2 / self.P_sum[gx] if self.P_sum[gy]!=0: self.ans -= self.S_sum[gy]**2 / self.P_sum[gy] self.S_sum[gy] += self.S_sum[gx] if self.P_sum[gx]!=0 and self.P_sum[gy]!=0: self.P_sum[gy] += self.P_sum[gx] elif self.P_sum[gx]==0: self.P_sum[gy] = 0 if self.P_sum[gy]!=0: 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")