結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー titiatitia
提出日時 2023-08-04 22:10:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,088 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 48,512 KB
最終ジャッジ日時 2024-10-14 20:07:34
合計ジャッジ時間 8,363 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 258 ms
27,648 KB
testcase_05 AC 504 ms
43,136 KB
testcase_06 AC 549 ms
45,440 KB
testcase_07 AC 343 ms
32,000 KB
testcase_08 AC 400 ms
35,328 KB
testcase_09 AC 621 ms
48,128 KB
testcase_10 AC 593 ms
47,616 KB
testcase_11 AC 433 ms
38,144 KB
testcase_12 AC 604 ms
48,512 KB
testcase_13 AC 413 ms
35,840 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 183 ms
23,808 KB
testcase_20 AC 58 ms
13,184 KB
testcase_21 AC 105 ms
17,408 KB
testcase_22 AC 165 ms
22,400 KB
testcase_23 AC 155 ms
22,016 KB
testcase_24 AC 137 ms
19,968 KB
testcase_25 AC 124 ms
19,456 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 148 ms
20,864 KB
testcase_29 WA -
testcase_30 AC 93 ms
16,128 KB
testcase_31 AC 181 ms
23,552 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

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)

ANS=0

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


print(max(0,ANS-1))


LIST=[]
for i in range(1,N+1):
    if find(i)==i:
        LIST.append(INP[i])

LIST.sort(reverse=True)

0