結果

問題 No.330 Eigenvalue Decomposition
ユーザー ayaoniayaoni
提出日時 2021-04-19 03:56:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 261 ms / 5,000 ms
コード長 1,321 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 78,564 KB
最終ジャッジ日時 2024-07-04 04:56:50
合計ジャッジ時間 5,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
77,704 KB
testcase_01 AC 36 ms
53,432 KB
testcase_02 AC 53 ms
66,824 KB
testcase_03 AC 86 ms
77,492 KB
testcase_04 AC 37 ms
53,500 KB
testcase_05 AC 52 ms
66,288 KB
testcase_06 AC 89 ms
77,244 KB
testcase_07 AC 37 ms
53,144 KB
testcase_08 AC 79 ms
77,092 KB
testcase_09 AC 111 ms
75,724 KB
testcase_10 AC 37 ms
52,632 KB
testcase_11 AC 73 ms
75,540 KB
testcase_12 AC 133 ms
77,764 KB
testcase_13 AC 37 ms
52,748 KB
testcase_14 AC 84 ms
76,224 KB
testcase_15 AC 65 ms
74,040 KB
testcase_16 AC 37 ms
52,988 KB
testcase_17 AC 84 ms
76,208 KB
testcase_18 AC 114 ms
78,224 KB
testcase_19 AC 36 ms
52,640 KB
testcase_20 AC 99 ms
76,800 KB
testcase_21 AC 261 ms
78,564 KB
testcase_22 AC 53 ms
66,680 KB
testcase_23 AC 130 ms
76,628 KB
testcase_24 AC 107 ms
75,464 KB
testcase_25 AC 38 ms
52,124 KB
testcase_26 AC 54 ms
67,948 KB
testcase_27 AC 46 ms
63,000 KB
testcase_28 AC 37 ms
52,744 KB
testcase_29 AC 44 ms
60,748 KB
testcase_30 AC 36 ms
53,012 KB
testcase_31 AC 37 ms
53,004 KB
testcase_32 AC 36 ms
52,932 KB
testcase_33 AC 38 ms
52,532 KB
testcase_34 AC 38 ms
52,952 KB
testcase_35 AC 36 ms
52,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


class UnionFind:
    def __init__(self,n):
        self.par = [i for i in range(n+1)]  # 親のノード番号
        self.rank = [0]*(n+1)

    def find(self,x):  # xの根のノード番号
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def same_check(self,x,y):  # x,yが同じグループか否か
        return self.find(x) == self.find(y)

    def unite(self,x,y):  # x,yの属するグループの併合
        x = self.find(x)
        y = self.find(y)
        if self.rank[x] < self.rank[y]:
            x,y = y,x
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1
        self.par[y] = x


N,M = MI()

UF = UnionFind(N)
for _ in range(M):
    a,b,c = MI()
    UF.unite(a,b)

ans = sum(UF.find(i) == i for i in range(1,N+1))
print(ans)
0