結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 43 ms
53,504 KB
testcase_04 AC 215 ms
87,068 KB
testcase_05 AC 337 ms
95,568 KB
testcase_06 AC 344 ms
97,752 KB
testcase_07 AC 238 ms
89,088 KB
testcase_08 AC 284 ms
91,896 KB
testcase_09 AC 349 ms
98,752 KB
testcase_10 AC 312 ms
98,364 KB
testcase_11 AC 281 ms
93,184 KB
testcase_12 AC 328 ms
98,624 KB
testcase_13 AC 288 ms
92,208 KB
testcase_14 AC 41 ms
54,016 KB
testcase_15 AC 42 ms
54,400 KB
testcase_16 AC 42 ms
53,760 KB
testcase_17 AC 44 ms
53,504 KB
testcase_18 AC 42 ms
53,888 KB
testcase_19 AC 64 ms
72,064 KB
testcase_20 AC 56 ms
64,512 KB
testcase_21 AC 58 ms
67,584 KB
testcase_22 AC 61 ms
70,912 KB
testcase_23 AC 57 ms
69,120 KB
testcase_24 AC 66 ms
71,424 KB
testcase_25 AC 55 ms
67,584 KB
testcase_26 AC 48 ms
55,936 KB
testcase_27 AC 113 ms
86,144 KB
testcase_28 AC 108 ms
83,884 KB
testcase_29 AC 104 ms
78,720 KB
testcase_30 AC 71 ms
71,552 KB
testcase_31 AC 110 ms
85,656 KB
testcase_32 AC 110 ms
77,440 KB
testcase_33 AC 68 ms
69,760 KB
testcase_34 AC 107 ms
78,208 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