結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー 👑 rin204rin204
提出日時 2023-08-04 22:33:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 1,475 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 82,704 KB
最終ジャッジ日時 2024-11-26 17:51:05
合計ジャッジ時間 5,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,588 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 182 ms
77,068 KB
testcase_05 AC 252 ms
77,440 KB
testcase_06 AC 276 ms
77,808 KB
testcase_07 AC 206 ms
76,928 KB
testcase_08 AC 219 ms
77,540 KB
testcase_09 AC 278 ms
77,440 KB
testcase_10 AC 251 ms
77,080 KB
testcase_11 AC 221 ms
77,480 KB
testcase_12 AC 264 ms
77,488 KB
testcase_13 AC 223 ms
77,312 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 41 ms
52,608 KB
testcase_16 AC 42 ms
52,224 KB
testcase_17 AC 41 ms
52,480 KB
testcase_18 AC 39 ms
52,480 KB
testcase_19 AC 64 ms
68,992 KB
testcase_20 AC 56 ms
64,000 KB
testcase_21 AC 58 ms
65,792 KB
testcase_22 AC 62 ms
68,608 KB
testcase_23 AC 60 ms
67,328 KB
testcase_24 AC 70 ms
70,656 KB
testcase_25 AC 59 ms
66,688 KB
testcase_26 AC 45 ms
54,784 KB
testcase_27 AC 120 ms
82,704 KB
testcase_28 AC 102 ms
81,024 KB
testcase_29 AC 106 ms
77,560 KB
testcase_30 AC 71 ms
70,656 KB
testcase_31 AC 106 ms
82,556 KB
testcase_32 AC 99 ms
76,568 KB
testcase_33 AC 78 ms
74,496 KB
testcase_34 AC 106 ms
77,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n = n
        self.par = [-1] * n
        self.group_ = n

    def find(self, x):
        if self.par[x] < 0:
            return x
        lst = []
        while self.par[x] >= 0:
            lst.append(x)
            x = self.par[x]
        for y in lst:
            self.par[y] = x
        return x

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False

        if self.par[x] > self.par[y]:
            x, y = y, x

        self.par[x] += self.par[y]
        self.par[y] = x
        self.group_ -= 1
        return True

    def size(self, x):
        return -self.par[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    @property
    def group(self):
        return self.group_


n, m = map(int, input().split())
in_ = [0] * n
out_ = [0] * n
UF = UnionFind(n)
loop = [False] * n

for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    in_[v] += 1
    out_[u] += 1
    UF.unite(u, v)
    if u == v:
        loop[u] = True

tot = 0
for i, o in zip(in_, out_):
    tot += max(0, i - o)

C = [False] * n
for i in range(n):
    if in_[i] != out_[i]:
        C[UF.find(i)] = True

z = 0
for i in range(n):
    if UF.find(i) == i and not C[i] and (UF.size(i) > 1 or loop[i]):
        z += 1
        C[i] = True

if tot == 0:
    ans = z - 1
else:
    ans = tot - 1 + z
print(max(0, ans))
0