結果

問題 No.2200 Weird Shortest Path
ユーザー とりゐとりゐ
提出日時 2023-01-28 19:39:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 704 ms / 2,000 ms
コード長 1,984 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 147,336 KB
最終ジャッジ日時 2024-06-28 22:07:47
合計ジャッジ時間 18,707 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,732 KB
testcase_01 AC 39 ms
54,392 KB
testcase_02 AC 42 ms
55,420 KB
testcase_03 AC 59 ms
70,576 KB
testcase_04 AC 85 ms
77,292 KB
testcase_05 AC 38 ms
55,324 KB
testcase_06 AC 46 ms
62,656 KB
testcase_07 AC 56 ms
68,204 KB
testcase_08 AC 79 ms
76,944 KB
testcase_09 AC 77 ms
76,924 KB
testcase_10 AC 40 ms
55,996 KB
testcase_11 AC 37 ms
54,984 KB
testcase_12 AC 38 ms
56,368 KB
testcase_13 AC 37 ms
54,444 KB
testcase_14 AC 37 ms
55,052 KB
testcase_15 AC 86 ms
77,152 KB
testcase_16 AC 40 ms
55,392 KB
testcase_17 AC 378 ms
96,460 KB
testcase_18 AC 463 ms
111,452 KB
testcase_19 AC 648 ms
146,648 KB
testcase_20 AC 704 ms
143,360 KB
testcase_21 AC 343 ms
97,372 KB
testcase_22 AC 529 ms
109,344 KB
testcase_23 AC 689 ms
146,116 KB
testcase_24 AC 246 ms
85,788 KB
testcase_25 AC 675 ms
144,204 KB
testcase_26 AC 653 ms
146,800 KB
testcase_27 AC 387 ms
96,328 KB
testcase_28 AC 565 ms
120,328 KB
testcase_29 AC 639 ms
140,668 KB
testcase_30 AC 644 ms
146,520 KB
testcase_31 AC 509 ms
116,076 KB
testcase_32 AC 699 ms
146,708 KB
testcase_33 AC 683 ms
146,964 KB
testcase_34 AC 672 ms
139,792 KB
testcase_35 AC 690 ms
147,092 KB
testcase_36 AC 654 ms
140,432 KB
testcase_37 AC 689 ms
146,960 KB
testcase_38 AC 689 ms
147,336 KB
testcase_39 AC 436 ms
107,600 KB
testcase_40 AC 386 ms
144,776 KB
testcase_41 AC 285 ms
105,356 KB
testcase_42 AC 384 ms
143,388 KB
testcase_43 AC 446 ms
146,352 KB
testcase_44 AC 456 ms
146,348 KB
testcase_45 AC 436 ms
146,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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):
    group_members=defaultdict(list)
    for member in range(self.n):
      group_members[self.find(member)].append(member)
    return group_members

def compare(a,b):
  # 比較関数 (a<=b)
  return a[0]<=b[0]


def merge(l, r):
    new = []
    ln = 0
    rn = 0
    while ln < len(l) and rn < len(r):
        if compare(l[ln],r[rn]):
            new.append(l[ln])
            ln += 1
        else:
            new.append(r[rn])
            rn += 1
    for i in range(ln, len(l)):
        new.append(l[i])
    for i in range(rn, len(r)):
        new.append(r[i])
    return new
 
def MergeSort(l):
    if len(l) == 0:
        return []
    if len(l) == 1:
        return l
    else:
        a = l[:len(l)//2]
        b = l[len(l)//2:]
        return merge(MergeSort(a), MergeSort(b))

from sys import stdin
input=lambda :stdin.readline()[:-1]

n,m=map(int,input().split())
edge=[]
uf=UnionFind(n)
for _ in range(m):
  x,y,w=map(lambda x:int(x)-1,input().split())
  edge.append((w+1,x,y))
edge=MergeSort(edge)
ans=0
for w,x,y in edge:
  if not uf.same(x,y):
    ans+=w*uf.size(x)*uf.size(y)
    uf.union(x,y)
print(ans)
0