結果
問題 | No.1207 グラフX |
ユーザー | 👑 Kazun |
提出日時 | 2020-08-30 16:23:02 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,102 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 82,244 KB |
実行使用メモリ | 191,376 KB |
最終ジャッジ日時 | 2024-11-15 11:10:00 |
合計ジャッジ時間 | 35,316 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 739 ms
175,704 KB |
testcase_01 | AC | 736 ms
175,576 KB |
testcase_02 | AC | 750 ms
175,780 KB |
testcase_03 | AC | 747 ms
175,788 KB |
testcase_04 | AC | 761 ms
176,288 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 775 ms
133,504 KB |
testcase_09 | AC | 756 ms
148,488 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 754 ms
140,376 KB |
testcase_13 | AC | 512 ms
94,240 KB |
testcase_14 | AC | 825 ms
173,684 KB |
testcase_15 | AC | 785 ms
146,760 KB |
testcase_16 | AC | 562 ms
98,688 KB |
testcase_17 | AC | 661 ms
128,952 KB |
testcase_18 | AC | 515 ms
131,576 KB |
testcase_19 | AC | 641 ms
110,748 KB |
testcase_20 | AC | 799 ms
175,716 KB |
testcase_21 | AC | 142 ms
77,824 KB |
testcase_22 | AC | 644 ms
134,980 KB |
testcase_23 | AC | 665 ms
136,360 KB |
testcase_24 | AC | 460 ms
120,396 KB |
testcase_25 | AC | 809 ms
175,572 KB |
testcase_26 | AC | 722 ms
150,608 KB |
testcase_27 | AC | 814 ms
163,972 KB |
testcase_28 | AC | 787 ms
149,984 KB |
testcase_29 | AC | 753 ms
158,248 KB |
testcase_30 | AC | 523 ms
109,024 KB |
testcase_31 | AC | 432 ms
89,204 KB |
testcase_32 | AC | 429 ms
107,644 KB |
testcase_33 | AC | 471 ms
108,512 KB |
testcase_34 | AC | 769 ms
144,020 KB |
testcase_35 | AC | 202 ms
79,464 KB |
testcase_36 | AC | 736 ms
154,672 KB |
testcase_37 | AC | 695 ms
136,560 KB |
testcase_38 | AC | 322 ms
89,216 KB |
testcase_39 | AC | 471 ms
110,400 KB |
testcase_40 | AC | 300 ms
80,904 KB |
testcase_41 | AC | 629 ms
112,088 KB |
testcase_42 | AC | 47 ms
54,272 KB |
testcase_43 | AC | 47 ms
54,016 KB |
testcase_44 | AC | 47 ms
54,144 KB |
testcase_45 | AC | 698 ms
168,464 KB |
testcase_46 | AC | 707 ms
168,340 KB |
testcase_47 | AC | 700 ms
168,468 KB |
testcase_48 | AC | 700 ms
168,464 KB |
ソースコード
class Union_Find(): def __init__(self,N): """0,1,...,n-1を要素として初期化する. n:要素数 """ self.n=N self.parents=[-1]*N self.rank=[0]*N def find(self, x): """要素xの属している族を調べる. 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,yを同一視する. x,y:要素 """ x = self.find(x) y = self.find(y) if x == y: return if self.rank[x]>self.rank[y]: self.parents[x] += self.parents[y] self.parents[y] = x else: self.parents[y] += self.parents[x] self.parents[x] = y if self.rank[x]==self.rank[y]: self.rank[y]+=1 def size(self, x): """要素xの属している要素の数. x:要素 """ return -self.parents[self.find(x)] def same(self, x, y): """要素x,yは同一視されているか? x,y:要素 """ return self.find(x) == self.find(y) def members(self, x): """要素xが属している族の要素. ※族の要素の個数が欲しいときはsizeを使うこと!! 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()) #================================================ from collections import deque N,M,X=map(int,input().split()) Mod=10**9+7 E=[[] for _ in range(N+1)] F=[0]*(N-1) U=Union_Find(N+1) k=0 for i in range(M): x,y,z=tuple(map(int,input().split())) if not U.same(x,y): U.union(x,y) E[x].append(y) E[y].append(x) F[k]=(x,y,z) k+=1 #---------------------------- Parent=[-1]*(N+1) Parent[1]=0 Depth=[-1]*(N+1) Depth[1]=0 Direct_Children=[set() for _ in range(N+1)] Q=deque([1]) while Q: u=Q.popleft() for v in E[u]: if Parent[v]==-1: Q.append(v) Parent[v]=u Direct_Children[u].add(v) Depth[v]=Depth[u]+1 Children=[-1]*(N+1) def Children_Count(x): if Children[x]!=-1: return Children[x] X=0 for a in Direct_Children[x]: X+=Children_Count(a) Children[x]=X+1 return X+1 _=Children_Count(1) Ans=0 for (x,y,z) in F: if Depth[x]<Depth[y]: a,b=x,y else: a,b=y,x Ans+=Children[b]*(N-Children[b])*pow(X,z,Mod) Ans%=Mod print(Ans)