結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー FromBooskaFromBooska
提出日時 2023-08-05 11:45:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 947 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 86,844 KB
最終ジャッジ日時 2024-10-15 08:50:18
合計ジャッジ時間 5,073 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 56 ms
70,528 KB
testcase_20 AC 50 ms
63,832 KB
testcase_21 AC 53 ms
66,688 KB
testcase_22 AC 55 ms
69,760 KB
testcase_23 AC 55 ms
69,884 KB
testcase_24 AC 57 ms
68,736 KB
testcase_25 AC 52 ms
66,560 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 88 ms
84,352 KB
testcase_29 WA -
testcase_30 AC 59 ms
67,076 KB
testcase_31 AC 95 ms
86,844 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 頂点すべてに達するのではなく辺すべてに達する(使う)
# まず多重辺は打ち消しあう分を消そう、いらないから
# 自己ループも消そう、いらないから
# それから、辺が何本の線になっているか
# degreeをinward, outwardで数えるか
# outward-inwardでプラスをすべて数えればそれが線の数
# 答えはそこから1を引けばいいか、やってみよう

N, M = map(int, input().split())
edges = [set() for i in range(N+1)]
for i in range(M):
    u, v = map(int, input().split())
    if u == v:
        continue
    if u in edges[v]:
        edges[v].discard(u)
    else:
        edges[u].add(v)

inward = [0]*(N+1)
outward = [0]*(N+1)

for i in range(1, N+1):
    outward[i] += len(edges[i])
    for nxt in edges[i]:
        inward[nxt] += 1
        
count = 0
for i in range(1, N+1):
    count += max(0, outward[i]-inward[i])
ans = count-1
print(ans)








0