結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー FromBooskaFromBooska
提出日時 2023-08-05 12:21:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 1,984 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-05-05 01:45:13
合計ジャッジ時間 5,014 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 166 ms
76,672 KB
testcase_05 AC 228 ms
76,672 KB
testcase_06 AC 243 ms
77,284 KB
testcase_07 AC 174 ms
76,860 KB
testcase_08 AC 196 ms
76,928 KB
testcase_09 AC 248 ms
77,440 KB
testcase_10 AC 215 ms
77,320 KB
testcase_11 AC 208 ms
76,756 KB
testcase_12 AC 243 ms
77,184 KB
testcase_13 AC 216 ms
77,008 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 39 ms
52,096 KB
testcase_17 AC 40 ms
52,480 KB
testcase_18 AC 39 ms
52,480 KB
testcase_19 AC 51 ms
63,104 KB
testcase_20 AC 48 ms
60,416 KB
testcase_21 AC 49 ms
61,312 KB
testcase_22 AC 50 ms
63,104 KB
testcase_23 AC 50 ms
62,976 KB
testcase_24 AC 54 ms
64,256 KB
testcase_25 AC 47 ms
61,584 KB
testcase_26 AC 45 ms
54,016 KB
testcase_27 AC 79 ms
76,544 KB
testcase_28 AC 82 ms
75,776 KB
testcase_29 AC 77 ms
73,856 KB
testcase_30 AC 57 ms
64,256 KB
testcase_31 AC 76 ms
75,904 KB
testcase_32 AC 84 ms
76,416 KB
testcase_33 AC 54 ms
63,488 KB
testcase_34 AC 78 ms
74,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# またWA出た
# outward-inwardだと輪っかを0としてしまう
# UFも組み合わせて、数えていなければカウント増やそう

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 unite(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 __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())


N, M = map(int, input().split())
UF = UnionFind(N+1)
inward = [0]*(N+1)
outward = [0]*(N+1)
for i in range(M):
    u, v = map(int, input().split())
    outward[u] += 1
    inward[v] += 1
    UF.unite(u, v)

count = 0
visited = set()
for i in range(1, N+1):
    if outward[i]-inward[i] > 0:
        count += outward[i]-inward[i]
        root = UF.find(i)
        visited.add(root)
        
for i in range(1, N+1):
    if outward[i] > 0:
        root = UF.find(i)
        if root not in visited:
            visited.add(root)
            count += 1
        
ans = count-1
print(ans)
0