結果
問題 | No.1207 グラフX |
ユーザー | None |
提出日時 | 2021-03-19 10:00:14 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,641 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 177,772 KB |
最終ジャッジ日時 | 2024-11-17 19:31:39 |
合計ジャッジ時間 | 131,216 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 1,805 ms
114,700 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | AC | 99 ms
87,936 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 910 ms
108,792 KB |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | AC | 144 ms
87,296 KB |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | AC | 1,258 ms
96,640 KB |
testcase_39 | TLE | - |
testcase_40 | AC | 254 ms
102,252 KB |
testcase_41 | TLE | - |
testcase_42 | AC | 34 ms
57,984 KB |
testcase_43 | AC | 36 ms
60,504 KB |
testcase_44 | AC | 37 ms
57,856 KB |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
testcase_48 | TLE | - |
ソースコード
class UnionFind: def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): """ 根を見つける関数を定義(同時にxを直接根にくっつける操作も行う)""" tmp = [] parents = self.parents while parents[x] >= 0: tmp.append(x) x = parents[x] for y in tmp: parents[y] = x return x def union(self, x, y): """ 二つの木をくっつける(子を多く持つ方を根とした親子関係)。これは破壊的操作を行う。""" x = self.find(x) y = self.find(y) if x == y: return False if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x return True def same(self, x, y): """ xとyが同じ根の子かを判定 """ return self.find(x) == self.find(y) def size(self, x): """ xの根のparent(= 要素数)を返す """ return -self.parents[self.find(x)] def members(self, x): """ xが属するグループの要素をリストとして返す O(N)""" root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): """ 全ての根の要素をリストとして返す O(N)""" return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): """ グループの数を返す O(N)""" return len(self.roots()) def size_list(self): """ 各グループの要素数のリストを返す(根の番号は返さない) O(N)""" return [-x for x in self.parents if x < 0] def all_group_members(self): """ {根:[根の子(根を含む)のリスト],...}を辞書で返す O(N)""" res = [[] for _ in range(self.n)] for i in range(self.n): x = self.find(i) res[x].append(i) return {r: res[r] for r in self.roots()} def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) def dfs(start=0,goal=None): p,t=start,0 parents[p]=-2 next_set=[(p,t)] if p==goal: return t while next_set: p,t=next_set.pop() if p>=0: for q in edges[p]: if q in parents: continue if q==goal: return t+1 parents[q]=p next_set.append((~q,t+1)) next_set.append((q,t+1)) else: # 帰りがけ処理 p=~p par=parents[p] size[par]+=size[p] return -1 def example(): global input example = iter( """ 5 5 5 1 4 3 2 4 4 3 5 7 2 3 8 2 3 10 """ .strip().split("\n")) input = lambda: next(example) #####( main )#################################################################### import sys input=sys.stdin.readline # example() N,M,X=map(int,input().split()) data=[] for _ in range(M): p,q,cost=map(int,input().split()) p,q = p-1,q-1 data.append((p,q,cost)) size=[1]*N parents=[-1]*N UF=UnionFind(N) edges=[[] for _ in range(N)] used=[0]*M data2=[] for p,q,dist in data: if UF.union(p,q): edges[p].append(q) edges[q].append(p) data2.append((p,q,dist)) for i in range(N): if parents[i]==-1: dfs(start=i) MOD=10**9+7 res=0 for p,q,cost in data2: if parents[q]!=p: q,p=p,q n=UF.size(p) m=size[q] res+=m*(n-m)%MOD*pow(X,cost,MOD)%MOD res%=MOD print(res)