結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー miya145592miya145592
提出日時 2023-08-05 01:56:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 1,747 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 98,940 KB
最終ジャッジ日時 2024-05-05 01:43:32
合計ジャッジ時間 6,041 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,144 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 42 ms
54,272 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 215 ms
87,272 KB
testcase_05 AC 303 ms
96,208 KB
testcase_06 AC 330 ms
97,884 KB
testcase_07 AC 238 ms
89,472 KB
testcase_08 AC 291 ms
92,408 KB
testcase_09 AC 374 ms
98,940 KB
testcase_10 AC 327 ms
98,556 KB
testcase_11 AC 276 ms
93,436 KB
testcase_12 AC 307 ms
98,876 KB
testcase_13 AC 298 ms
92,464 KB
testcase_14 AC 41 ms
53,888 KB
testcase_15 AC 41 ms
54,016 KB
testcase_16 AC 43 ms
54,016 KB
testcase_17 AC 46 ms
54,144 KB
testcase_18 AC 40 ms
53,888 KB
testcase_19 AC 60 ms
71,808 KB
testcase_20 AC 55 ms
64,896 KB
testcase_21 AC 59 ms
67,968 KB
testcase_22 AC 59 ms
71,168 KB
testcase_23 AC 56 ms
68,992 KB
testcase_24 AC 64 ms
71,680 KB
testcase_25 AC 57 ms
67,584 KB
testcase_26 AC 48 ms
56,064 KB
testcase_27 AC 116 ms
86,016 KB
testcase_28 AC 106 ms
83,900 KB
testcase_29 AC 102 ms
78,848 KB
testcase_30 AC 69 ms
72,064 KB
testcase_31 AC 106 ms
85,784 KB
testcase_32 AC 107 ms
77,568 KB
testcase_33 AC 67 ms
69,632 KB
testcase_34 AC 109 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n, w=None):
        self.par = [-1]*n
        self.rank = [0]*n
        self.siz = [1]*n
        self.cnt = n
        self.min_node = [i for i in range(n)]
        self.weight = w if w else [1]*n

    def root(self, x):
        if self.par[x] == -1:
            return x
        self.par[x] = self.root(self.par[x])
        return self.par[x]

    def issame(self, x, y):
        return self.root(x) == self.root(y)
            
    def unite(self, x, y):
        px = self.root(x)
        py = self.root(y)
        if px == py:
            return False
        if self.rank[px] < self.rank[py]:
            px, py = py, px
        self.par[py] = px
        if self.rank[px] == self.rank[py]:
            self.rank[px] += 1
        self.siz[px] += self.siz[py]
        self.cnt -= 1
        self.min_node[px] = min(self.min_node[px], self.min_node[py])
        self.weight[px] += self.weight[py]
        return False

    def count(self):
        return self.cnt

    def min(self, x):
        return self.min_node[self.root(x)]

    def getweight(self, x):
        return self.weight[self.root(x)]
    
    def size(self, x):
        return self.siz[self.root(x)]
    
from collections import defaultdict

N, M = map(int, input().split())
UV = [list(map(int, input().split())) for _ in range(M)]
deg = [0 for _ in range(N)]
indeg = [0 for _ in range(N)]
UF = UnionFind(N)
for u, v in UV:
    u-=1
    v-=1
    deg[u] += 1
    indeg[v] += 1
    UF.unite(u, v)
plus = defaultdict(int)
for i in range(N):
    sa = indeg[i]-deg[i]
    r = UF.root(i)
    if indeg[i]>0 or deg[i]>0:
        plus[r] += abs(sa)

ans = 0
for k in plus:
    if plus[k]//2>=2:
        ans+=plus[k]//2-1

ans += len(plus)-1
print(ans)
0