結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー titiatitia
提出日時 2023-08-05 00:00:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 1,129 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 48,768 KB
最終ジャッジ日時 2024-05-05 01:42:16
合計ジャッジ時間 7,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
11,008 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 223 ms
27,776 KB
testcase_05 AC 431 ms
43,392 KB
testcase_06 AC 475 ms
45,568 KB
testcase_07 AC 287 ms
32,256 KB
testcase_08 AC 339 ms
35,712 KB
testcase_09 AC 519 ms
48,256 KB
testcase_10 AC 507 ms
47,744 KB
testcase_11 AC 371 ms
38,400 KB
testcase_12 AC 523 ms
48,768 KB
testcase_13 AC 346 ms
35,840 KB
testcase_14 AC 27 ms
10,880 KB
testcase_15 AC 27 ms
11,008 KB
testcase_16 AC 26 ms
11,008 KB
testcase_17 AC 27 ms
10,880 KB
testcase_18 AC 27 ms
10,880 KB
testcase_19 AC 159 ms
22,784 KB
testcase_20 AC 51 ms
13,184 KB
testcase_21 AC 93 ms
16,896 KB
testcase_22 AC 143 ms
21,504 KB
testcase_23 AC 142 ms
21,120 KB
testcase_24 AC 123 ms
19,328 KB
testcase_25 AC 123 ms
18,816 KB
testcase_26 AC 29 ms
10,880 KB
testcase_27 AC 161 ms
22,272 KB
testcase_28 AC 131 ms
19,968 KB
testcase_29 AC 54 ms
13,184 KB
testcase_30 AC 79 ms
15,744 KB
testcase_31 AC 152 ms
22,656 KB
testcase_32 AC 34 ms
11,392 KB
testcase_33 AC 68 ms
14,336 KB
testcase_34 AC 47 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())

E=[list(map(int,input().split())) for i in range(M)]

IN=[0]*(N+1)
OUT=[0]*(N+1)

# UnionFind

Group = [i for i in range(N+1)] # グループ分け
Nodes = [1]*(N+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

for a,b in E:
    Union(a,b)

LEN=0
for i in range(1,N+1):
    if find(i)==i:
        LEN+=1

for a,b in E:
    IN[a]+=1
    OUT[b]+=1

INP=[0]*(N+1)

for i in range(1,N+1):
    if IN[i]>OUT[i]:
        INP[find(i)]+=IN[i]-OUT[i]

LIST=[]
for i in range(1,N+1):
    if find(i)==i and (IN[i]>0 or OUT[i]>0):
        LIST.append(INP[i])

LIST.sort(reverse=True)

ANS=0
for l in LIST:
    ANS+=max(l-1,0)

ANS+=len(LIST)-1

print(ANS)
0