結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー ああいいああいい
提出日時 2023-08-05 18:28:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 988 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 111,360 KB
最終ジャッジ日時 2024-05-05 01:47:30
合計ジャッジ時間 6,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
53,632 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 41 ms
54,144 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 222 ms
77,952 KB
testcase_05 AC 245 ms
77,824 KB
testcase_06 AC 296 ms
78,976 KB
testcase_07 AC 207 ms
77,824 KB
testcase_08 AC 250 ms
77,696 KB
testcase_09 AC 328 ms
78,592 KB
testcase_10 AC 271 ms
78,464 KB
testcase_11 AC 244 ms
78,080 KB
testcase_12 AC 308 ms
78,336 KB
testcase_13 AC 280 ms
78,976 KB
testcase_14 AC 43 ms
53,632 KB
testcase_15 AC 40 ms
54,016 KB
testcase_16 AC 42 ms
53,888 KB
testcase_17 AC 44 ms
53,888 KB
testcase_18 AC 40 ms
53,888 KB
testcase_19 AC 112 ms
111,360 KB
testcase_20 AC 60 ms
71,296 KB
testcase_21 AC 76 ms
86,656 KB
testcase_22 AC 110 ms
110,952 KB
testcase_23 AC 108 ms
110,848 KB
testcase_24 AC 107 ms
103,660 KB
testcase_25 AC 79 ms
92,288 KB
testcase_26 AC 46 ms
55,424 KB
testcase_27 AC 129 ms
104,704 KB
testcase_28 AC 130 ms
98,840 KB
testcase_29 AC 98 ms
80,640 KB
testcase_30 AC 111 ms
94,976 KB
testcase_31 AC 130 ms
104,576 KB
testcase_32 AC 99 ms
77,180 KB
testcase_33 AC 92 ms
81,920 KB
testcase_34 AC 105 ms
79,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)


N,M = map(int,input().split())
Gnum = [0] * (N + 1)
k = [0] * (N + 1)
parent = list(range(N + 1))
def find(i):
    if parent[i] == i:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    parent[i] = J
    parent[I] = J
    return True

for _ in range(M):
    u,v = map(int,input().split())
    Gnum[u] -= 1
    Gnum[v] += 1
    unite(u,v)
    if u == v:
        k[u] = 1

ans = 0
from collections import defaultdict
d = defaultdict(list)
s = set()
for i in range(1,N + 1):
    p = find(i)
    if i != p:
        s.add(p)
    else:
        if k[i] == 1:
            s.add(p)
    d[p].append(Gnum[i])
ans += len(s) - 1
#print(s)
for l in d.values():
    tmp = 0
    f = 0
    for u in l:
        if u > 0:
            if f == 0:
                tmp += u - 1
                f = 1
            else:
                tmp += u
    
    ans += tmp
print(ans)
    
0