結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー flygonflygon
提出日時 2023-08-04 22:31:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,485 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 113,536 KB
最終ジャッジ日時 2024-11-26 17:50:41
合計ジャッジ時間 5,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,784 KB
testcase_01 AC 44 ms
54,656 KB
testcase_02 AC 53 ms
54,400 KB
testcase_03 AC 46 ms
54,656 KB
testcase_04 AC 172 ms
78,336 KB
testcase_05 AC 239 ms
80,896 KB
testcase_06 AC 265 ms
83,328 KB
testcase_07 AC 178 ms
79,872 KB
testcase_08 AC 231 ms
80,896 KB
testcase_09 AC 250 ms
82,816 KB
testcase_10 AC 220 ms
82,304 KB
testcase_11 AC 214 ms
81,280 KB
testcase_12 AC 245 ms
82,048 KB
testcase_13 AC 239 ms
81,664 KB
testcase_14 AC 43 ms
54,912 KB
testcase_15 AC 44 ms
54,400 KB
testcase_16 AC 44 ms
54,784 KB
testcase_17 AC 44 ms
54,400 KB
testcase_18 AC 45 ms
54,912 KB
testcase_19 AC 118 ms
113,536 KB
testcase_20 AC 70 ms
73,472 KB
testcase_21 AC 105 ms
102,528 KB
testcase_22 AC 114 ms
109,056 KB
testcase_23 AC 109 ms
106,368 KB
testcase_24 AC 120 ms
102,784 KB
testcase_25 AC 113 ms
106,240 KB
testcase_26 AC 52 ms
55,808 KB
testcase_27 AC 133 ms
110,976 KB
testcase_28 AC 127 ms
103,680 KB
testcase_29 AC 106 ms
83,712 KB
testcase_30 AC 114 ms
96,896 KB
testcase_31 AC 145 ms
110,336 KB
testcase_32 AC 97 ms
77,056 KB
testcase_33 AC 109 ms
91,264 KB
testcase_34 AC 103 ms
80,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

from collections import defaultdict


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

    def find(self, x):
        if self.p[x] < 0:
            return x
        else:
            self.p[x] = self.find(self.p[x])
            return self.p[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.p[x] > self.p[y]:
            x, y = y, x
        self.p[x] += self.p[y]
        self.p[y] = x

    def same(self, a, b):
        return self.find(a) == self.find(b)

    def group(self):
        d = defaultdict(list)
        for i in range(1, self.n+1):
            par = self.find(i)
            d[par].append(i)
        return d


n,m = map(int,input().split())
graph = [[] for i in range(n+1)]
uf = UnionFind(n)
indeg = [0]*(n+1)
outdeg = [0]*(n+1)
for i in range(m):
    a,b = map(int,input().split())
    graph[a].append(b)
    uf.union(a,b)
    indeg[b] += 1
    outdeg[a] += 1

g = uf.group()

ans = 0
gg = 0
for k,v in g.items():
    cnt = 0
    tmp = 0
    for i in v:
        if indeg[i] >= outdeg[i]:
            cnt += indeg[i] - outdeg[i]
        tmp += indeg[i]
    ans += max(cnt-1, 0)
    gg += tmp >= 1

print(ans + gg-1)
0