結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー ikomaikoma
提出日時 2023-08-04 23:10:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,406 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 114,048 KB
最終ジャッジ日時 2024-05-05 01:41:23
合計ジャッジ時間 4,914 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 40 ms
54,016 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 44 ms
53,888 KB
testcase_04 AC 129 ms
77,184 KB
testcase_05 AC 161 ms
77,056 KB
testcase_06 AC 168 ms
78,208 KB
testcase_07 AC 149 ms
76,544 KB
testcase_08 AC 164 ms
77,056 KB
testcase_09 AC 194 ms
77,412 KB
testcase_10 AC 156 ms
77,056 KB
testcase_11 AC 150 ms
77,184 KB
testcase_12 AC 162 ms
77,408 KB
testcase_13 AC 174 ms
77,568 KB
testcase_14 AC 47 ms
53,888 KB
testcase_15 AC 47 ms
54,016 KB
testcase_16 AC 47 ms
53,760 KB
testcase_17 AC 47 ms
53,888 KB
testcase_18 AC 47 ms
53,632 KB
testcase_19 AC 118 ms
114,048 KB
testcase_20 AC 58 ms
70,528 KB
testcase_21 AC 71 ms
85,888 KB
testcase_22 AC 107 ms
113,536 KB
testcase_23 AC 115 ms
113,408 KB
testcase_24 AC 114 ms
105,856 KB
testcase_25 AC 85 ms
91,520 KB
testcase_26 AC 49 ms
55,296 KB
testcase_27 AC 140 ms
103,652 KB
testcase_28 AC 122 ms
97,468 KB
testcase_29 AC 94 ms
82,560 KB
testcase_30 AC 95 ms
94,464 KB
testcase_31 AC 123 ms
103,336 KB
testcase_32 AC 76 ms
74,240 KB
testcase_33 AC 74 ms
81,792 KB
testcase_34 AC 90 ms
80,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import defaultdict
class UnionFind:
    def __init__(self, n:int):
        self.n = n
        self.parents = [-1] * n
    def find(self, x:int):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]
    def union(self, x:int, y:int):
        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 all_group_members(self):
        members = defaultdict(list)
        for i in range(self.n): members[self.find(i)].append(i)
        return members


N,M=map(int,input().split())
uf = UnionFind(N)
dif = [0]*N
loop = [0]*N
for _ in range(M):
    u,v=map(lambda x:int(x)-1,input().split())
    if u==v:
        loop[u]=1
        continue
    dif[u]+=1
    dif[v]-=1
    uf.union(u,v)
# グループごとに計算
members = uf.all_group_members()
ans_list = []
for member in members.values():
    if len(member)==1 and loop[member[0]]==0:continue
    x=sum([abs(dif[m]) for m in member])//2
    if x:
        x-=1
    ans_list.append(x)
ans_list.sort()
# 0は他と接続コスト必要
ans = sum(ans_list)
if ans==0:
    ans = len(ans_list)-1
else:
    ans += len(ans_list)-1


print(ans)
0