結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 45 ms
54,400 KB
testcase_02 AC 47 ms
53,760 KB
testcase_03 AC 44 ms
54,400 KB
testcase_04 AC 133 ms
77,056 KB
testcase_05 AC 165 ms
77,616 KB
testcase_06 AC 181 ms
78,372 KB
testcase_07 AC 137 ms
76,680 KB
testcase_08 AC 153 ms
77,224 KB
testcase_09 AC 182 ms
77,916 KB
testcase_10 AC 153 ms
77,212 KB
testcase_11 AC 157 ms
77,148 KB
testcase_12 AC 171 ms
77,140 KB
testcase_13 AC 165 ms
77,240 KB
testcase_14 AC 43 ms
55,492 KB
testcase_15 AC 44 ms
54,804 KB
testcase_16 AC 44 ms
55,484 KB
testcase_17 AC 43 ms
54,528 KB
testcase_18 AC 44 ms
55,536 KB
testcase_19 AC 111 ms
114,268 KB
testcase_20 AC 57 ms
70,512 KB
testcase_21 AC 70 ms
86,264 KB
testcase_22 AC 104 ms
113,692 KB
testcase_23 AC 100 ms
113,568 KB
testcase_24 AC 105 ms
106,220 KB
testcase_25 AC 74 ms
92,308 KB
testcase_26 AC 46 ms
55,860 KB
testcase_27 AC 127 ms
103,892 KB
testcase_28 AC 117 ms
97,560 KB
testcase_29 AC 94 ms
82,672 KB
testcase_30 AC 93 ms
94,832 KB
testcase_31 AC 121 ms
103,680 KB
testcase_32 AC 76 ms
74,988 KB
testcase_33 AC 76 ms
82,148 KB
testcase_34 AC 93 ms
80,476 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