結果
問題 | No.1365 [Cherry 1st Tune] Whose Fault? |
ユーザー | yuusanlondon |
提出日時 | 2021-01-22 22:59:42 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 794 ms / 2,000 ms |
コード長 | 2,106 bytes |
コンパイル時間 | 520 ms |
コンパイル使用メモリ | 82,172 KB |
実行使用メモリ | 117,248 KB |
最終ジャッジ日時 | 2024-06-09 07:03:28 |
合計ジャッジ時間 | 19,074 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,608 KB |
testcase_01 | AC | 39 ms
52,608 KB |
testcase_02 | AC | 39 ms
52,992 KB |
testcase_03 | AC | 42 ms
52,736 KB |
testcase_04 | AC | 41 ms
53,248 KB |
testcase_05 | AC | 41 ms
53,248 KB |
testcase_06 | AC | 40 ms
53,504 KB |
testcase_07 | AC | 42 ms
53,760 KB |
testcase_08 | AC | 42 ms
52,992 KB |
testcase_09 | AC | 40 ms
52,992 KB |
testcase_10 | AC | 41 ms
52,992 KB |
testcase_11 | AC | 41 ms
52,864 KB |
testcase_12 | AC | 42 ms
53,632 KB |
testcase_13 | AC | 251 ms
79,384 KB |
testcase_14 | AC | 241 ms
80,128 KB |
testcase_15 | AC | 90 ms
77,312 KB |
testcase_16 | AC | 61 ms
70,272 KB |
testcase_17 | AC | 219 ms
79,880 KB |
testcase_18 | AC | 157 ms
78,336 KB |
testcase_19 | AC | 274 ms
80,364 KB |
testcase_20 | AC | 134 ms
77,296 KB |
testcase_21 | AC | 256 ms
79,604 KB |
testcase_22 | AC | 238 ms
79,408 KB |
testcase_23 | AC | 332 ms
94,092 KB |
testcase_24 | AC | 563 ms
100,968 KB |
testcase_25 | AC | 701 ms
107,264 KB |
testcase_26 | AC | 615 ms
101,632 KB |
testcase_27 | AC | 559 ms
87,296 KB |
testcase_28 | AC | 380 ms
81,192 KB |
testcase_29 | AC | 443 ms
83,748 KB |
testcase_30 | AC | 784 ms
112,716 KB |
testcase_31 | AC | 794 ms
117,248 KB |
testcase_32 | AC | 631 ms
110,216 KB |
testcase_33 | AC | 646 ms
96,512 KB |
testcase_34 | AC | 583 ms
93,312 KB |
testcase_35 | AC | 549 ms
100,992 KB |
testcase_36 | AC | 738 ms
115,960 KB |
testcase_37 | AC | 378 ms
83,248 KB |
testcase_38 | AC | 285 ms
104,600 KB |
testcase_39 | AC | 729 ms
104,064 KB |
testcase_40 | AC | 719 ms
103,420 KB |
testcase_41 | AC | 676 ms
110,924 KB |
testcase_42 | AC | 557 ms
85,336 KB |
testcase_43 | AC | 43 ms
52,608 KB |
testcase_44 | AC | 171 ms
114,560 KB |
testcase_45 | AC | 124 ms
77,340 KB |
ソースコード
import os,io input=io.BytesIO(os.read(0,os.fstat(0).st_size)).readline n=int(input()) class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n 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 self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return len(self.roots()) def all_group_members(self): return {r: self.members(r) for r in self.roots()} def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) uf=UnionFind(n) a=list(map(int,input().split())) b=list(map(int,input().split())) p=list(map(int,input().split())) q=int(input()) cost=0 flag0=[0]*n sump=[0]*n difs=[0]*n for i in range(n): if p[i]: sump[i]=1/p[i] else: flag0[i]=1 for i in range(n): cost+=p[i]*(a[i]-b[i])**2 difs[i]=(a[i]-b[i]) for _ in range(q): u,v=map(int,input().split()) if uf.same(u-1,v-1): print(cost) continue root1=uf.find(u-1) root2=uf.find(v-1) if not flag0[root1]: cost-=difs[root1]**2/sump[root1] if not flag0[root2]: cost-=difs[root2]**2/sump[root2] uf.union(u-1,v-1) tmp=sump[root1]+sump[root2] sump[root1]=tmp sump[root2]=tmp tmp=difs[root1]+difs[root2] difs[root1]=tmp difs[root2]=tmp if flag0[root1] or flag0[root2]: flag0[root1]=1 flag0[root2]=1 if not flag0[root1]: cost+=difs[root1]**2/sump[root1] print(cost)