結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー bug maker / ばぐめいかー@Python学習者bug maker / ばぐめいかー@Python学習者
提出日時 2023-08-05 14:52:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,420 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 48,256 KB
最終ジャッジ日時 2024-10-15 11:58:37
合計ジャッジ時間 6,710 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 205 ms
27,264 KB
testcase_05 AC 382 ms
42,880 KB
testcase_06 AC 406 ms
44,672 KB
testcase_07 AC 265 ms
31,872 KB
testcase_08 AC 299 ms
35,200 KB
testcase_09 AC 459 ms
47,616 KB
testcase_10 AC 448 ms
47,232 KB
testcase_11 AC 330 ms
37,888 KB
testcase_12 AC 461 ms
48,256 KB
testcase_13 AC 306 ms
35,456 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,496 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 30 ms
10,496 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 78 ms
22,656 KB
testcase_20 AC 40 ms
12,928 KB
testcase_21 AC 55 ms
16,768 KB
testcase_22 AC 73 ms
21,120 KB
testcase_23 AC 71 ms
20,864 KB
testcase_24 AC 65 ms
18,816 KB
testcase_25 AC 62 ms
18,688 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 71 ms
19,584 KB
testcase_29 WA -
testcase_30 AC 51 ms
15,232 KB
testcase_31 AC 79 ms
22,272 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def main():
    N, M = map(int, input().split())
    
    l = [list(map(int, input().split())) for l in range(M)]

    class UnionFind():
        def __init__(self, n):
            self.n = n
            self.parents = [-1] * n
        def find(self, x):
            if self.parents[x] < 0:
                return x
            else:
                self.parents[x] = self.find(self.parents[x])
                return self.parents[x]
        def union(self, x, y):
            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 roots(self):
            return [i for i, x in enumerate(self.parents) if x < 0]
        def group_count(self):
            return len(self.roots())

    lout = [0] * N
    lin = [0] * N
    lans = [0] * N

    uf = UnionFind(N)
    
    for i in range(M):
        uf.union(l[i][0] - 1, l[i][1] - 1)
        lout[l[i][0] - 1] += 1
        lin[l[i][1] - 1] += 1
    
    ecpt = 0
    
    for i in range(N):
        lans[i] = lout[i] - lin[i]
        if lout[i] == lin[i] == 0:
            ecpt += 1
        
    rc = uf.group_count()

    print(max(sum([i for i in lans if i > 0]) - 1, (rc - 1) - ecpt))

if __name__ == '__main__':
    main()
0