結果
問題 | No.1365 [Cherry 1st Tune] Whose Fault? |
ユーザー | chineristAC |
提出日時 | 2021-01-22 22:47:26 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,145 bytes |
コンパイル時間 | 402 ms |
コンパイル使用メモリ | 82,580 KB |
実行使用メモリ | 105,292 KB |
最終ジャッジ日時 | 2024-06-09 06:56:31 |
合計ジャッジ時間 | 14,847 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
52,764 KB |
testcase_01 | AC | 32 ms
53,756 KB |
testcase_02 | AC | 31 ms
53,792 KB |
testcase_03 | RE | - |
testcase_04 | AC | 36 ms
53,268 KB |
testcase_05 | AC | 33 ms
54,008 KB |
testcase_06 | AC | 34 ms
54,464 KB |
testcase_07 | AC | 34 ms
54,316 KB |
testcase_08 | AC | 32 ms
53,212 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 32 ms
53,608 KB |
testcase_12 | AC | 33 ms
53,924 KB |
testcase_13 | AC | 188 ms
79,752 KB |
testcase_14 | AC | 170 ms
79,568 KB |
testcase_15 | AC | 78 ms
77,204 KB |
testcase_16 | AC | 48 ms
70,824 KB |
testcase_17 | AC | 152 ms
79,040 KB |
testcase_18 | AC | 106 ms
78,372 KB |
testcase_19 | AC | 183 ms
79,596 KB |
testcase_20 | RE | - |
testcase_21 | AC | 168 ms
79,364 KB |
testcase_22 | AC | 150 ms
78,616 KB |
testcase_23 | AC | 237 ms
94,084 KB |
testcase_24 | AC | 368 ms
98,240 KB |
testcase_25 | AC | 499 ms
101,764 KB |
testcase_26 | AC | 405 ms
98,116 KB |
testcase_27 | AC | 420 ms
94,724 KB |
testcase_28 | AC | 311 ms
85,040 KB |
testcase_29 | AC | 292 ms
84,688 KB |
testcase_30 | AC | 583 ms
103,412 KB |
testcase_31 | AC | 532 ms
104,924 KB |
testcase_32 | AC | 396 ms
100,936 KB |
testcase_33 | AC | 491 ms
98,232 KB |
testcase_34 | AC | 425 ms
93,668 KB |
testcase_35 | AC | 378 ms
96,872 KB |
testcase_36 | AC | 489 ms
105,292 KB |
testcase_37 | AC | 244 ms
81,948 KB |
testcase_38 | AC | 210 ms
100,608 KB |
testcase_39 | AC | 553 ms
102,104 KB |
testcase_40 | AC | 528 ms
100,728 KB |
testcase_41 | AC | 473 ms
103,392 KB |
testcase_42 | RE | - |
testcase_43 | AC | 31 ms
53,552 KB |
testcase_44 | AC | 158 ms
104,444 KB |
testcase_45 | AC | 153 ms
91,496 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] 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] assert self.ans>=0 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())) #A = [0 for i in range(N)] #A[0] = 1 #B = [0 for i in range(N)] #P = [1 for i in range(N)] 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") #for i in range(len(ans)): #if ans[i] < 10**-7 and ans[i]!=0: #assert False