結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー gr1msl3ygr1msl3y
提出日時 2023-08-13 13:31:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 90,632 KB
最終ジャッジ日時 2024-11-21 09:00:26
合計ジャッジ時間 5,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,816 KB
testcase_01 AC 38 ms
53,256 KB
testcase_02 AC 39 ms
52,904 KB
testcase_03 AC 39 ms
52,756 KB
testcase_04 AC 157 ms
80,096 KB
testcase_05 AC 232 ms
85,316 KB
testcase_06 AC 253 ms
86,676 KB
testcase_07 AC 173 ms
81,708 KB
testcase_08 AC 196 ms
82,568 KB
testcase_09 AC 266 ms
86,052 KB
testcase_10 AC 242 ms
85,528 KB
testcase_11 AC 203 ms
83,820 KB
testcase_12 AC 251 ms
85,488 KB
testcase_13 AC 197 ms
82,616 KB
testcase_14 AC 39 ms
52,404 KB
testcase_15 AC 40 ms
53,228 KB
testcase_16 AC 39 ms
52,888 KB
testcase_17 WA -
testcase_18 AC 38 ms
52,316 KB
testcase_19 AC 122 ms
89,316 KB
testcase_20 AC 75 ms
78,356 KB
testcase_21 AC 95 ms
82,784 KB
testcase_22 AC 118 ms
87,668 KB
testcase_23 AC 111 ms
87,332 KB
testcase_24 AC 116 ms
85,544 KB
testcase_25 AC 99 ms
84,576 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 165 ms
86,736 KB
testcase_29 WA -
testcase_30 AC 109 ms
81,400 KB
testcase_31 AC 166 ms
90,300 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 130 ms
78,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
g0 = [[] for _ in range(N+1)]
g1 = [[] for _ in range(N+1)]
for _ in range(K):
    a, b = map(int, input().split())
    g0[a].append(b)
    g1[b].append(a)

ans = 0
seen = [0]*(N+1)
ct0 = ct1 = 0
for i in range(1, N+1):
    if seen[i]:
        continue
    seen[i] = 1
    task = [i]
    for v in task:
        for u in g0[v]:
            if seen[u]:
                continue
            seen[u] = 1
            task.append(u)
        for u in g1[v]:
            if seen[u]:
                continue
            seen[u] = 1
            task.append(u)
    res = sum(abs(len(g0[v])-len(g1[v])) for v in task)//2
    if len(task) == 1:
        continue
    if res:
        ct1 += 1
        ans += res-1
    else:
        ct0 += 1
ans += max(0, ct0+ct1-1)
print(ans)
0