結果
問題 | No.1365 [Cherry 1st Tune] Whose Fault? |
ユーザー | GER_chen |
提出日時 | 2021-01-23 13:35:27 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,171 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 209,836 KB |
最終ジャッジ日時 | 2024-06-09 18:34:51 |
合計ジャッジ時間 | 10,106 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
60,032 KB |
testcase_01 | AC | 39 ms
54,272 KB |
testcase_02 | AC | 40 ms
54,272 KB |
testcase_03 | AC | 45 ms
62,080 KB |
testcase_04 | AC | 48 ms
62,208 KB |
testcase_05 | AC | 48 ms
63,232 KB |
testcase_06 | AC | 50 ms
63,232 KB |
testcase_07 | AC | 54 ms
65,408 KB |
testcase_08 | AC | 49 ms
63,872 KB |
testcase_09 | AC | 39 ms
54,656 KB |
testcase_10 | AC | 42 ms
54,912 KB |
testcase_11 | AC | 45 ms
60,800 KB |
testcase_12 | AC | 52 ms
64,000 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 367 ms
80,864 KB |
testcase_16 | AC | 230 ms
80,956 KB |
testcase_17 | AC | 1,256 ms
83,280 KB |
testcase_18 | AC | 1,154 ms
89,000 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 613 ms
78,436 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 1,263 ms
82,140 KB |
testcase_23 | TLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
ソースコード
#yuki-1365 from collections import defaultdict N = int(input()) A = list(map(int, input().split())) #初期エネルギー B = list(map(int, input().split())) #目標エネルギー P = list(map(int, input().split())) #重みづけ P2 = [float('inf') if p == 0 else 1/p for p in P] class UnionFind(): def __init__(self, n): self.n = n self.roots = [[-1, A[i], B[i], P2[i]] for i in range(n)] def find(self, x): #xの根を見つける if self.roots[x][0] < 0: return x else: self.roots[x][0] = self.find(self.roots[x][0]) #つなぎ直す return self.roots[x][0] def union(self, x, y): #x,yが入っている部分集合を合体させる x = self.find(x) y = self.find(y) if x == y: return if self.roots[x][0] > self.roots[y][0]: x, y = y, x for i in range(4): self.roots[x][i] += self.roots[y][i] self.roots[y][0] = x # def size(self, x): #ある元が入っている部分集合の大きさを求める return -self.roots[self.find(x)][0] 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 rootss(self): return [i for i, x in enumerate(self.roots) if x[0] < 0] def group_count(self): return len(self.rootss()) def all_group_members(self): #defaultdictの形で各部分集合を返す group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members def __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) def cost(self): c = 0 for r in self.rootss(): a, b, p2 = self.roots[r][1:] c += (a-b)**2/p2 return c u = UnionFind(N) Q = int(input()) ans = sum(P[i]*(A[i]-B[i])**2 for i in range(N)) for _ in range(Q): X, Y = map(int, input().split()) u.union(X-1, Y-1) print(u.cost())