結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,208 KB
testcase_01 AC 44 ms
54,524 KB
testcase_02 AC 44 ms
54,868 KB
testcase_03 AC 44 ms
54,520 KB
testcase_04 AC 129 ms
76,988 KB
testcase_05 AC 164 ms
77,188 KB
testcase_06 AC 179 ms
78,084 KB
testcase_07 AC 137 ms
77,240 KB
testcase_08 AC 149 ms
77,264 KB
testcase_09 AC 181 ms
77,796 KB
testcase_10 AC 152 ms
77,308 KB
testcase_11 AC 155 ms
77,552 KB
testcase_12 AC 171 ms
77,920 KB
testcase_13 AC 166 ms
77,236 KB
testcase_14 AC 43 ms
54,324 KB
testcase_15 AC 43 ms
54,724 KB
testcase_16 AC 43 ms
55,328 KB
testcase_17 AC 43 ms
54,804 KB
testcase_18 AC 44 ms
54,336 KB
testcase_19 AC 113 ms
114,000 KB
testcase_20 AC 58 ms
71,704 KB
testcase_21 AC 70 ms
87,172 KB
testcase_22 AC 106 ms
113,484 KB
testcase_23 AC 102 ms
113,680 KB
testcase_24 AC 106 ms
106,528 KB
testcase_25 AC 75 ms
92,260 KB
testcase_26 AC 47 ms
55,836 KB
testcase_27 AC 127 ms
103,924 KB
testcase_28 AC 116 ms
97,564 KB
testcase_29 AC 94 ms
82,808 KB
testcase_30 AC 93 ms
94,848 KB
testcase_31 AC 123 ms
103,564 KB
testcase_32 AC 77 ms
74,480 KB
testcase_33 AC 76 ms
82,876 KB
testcase_34 AC 93 ms
80,632 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 = sum(ans_list)
ans += len(ans_list)-1

print(ans)
0