結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー FromBooskaFromBooska
提出日時 2023-08-05 12:02:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 825 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-10-15 09:06:22
合計ジャッジ時間 4,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 111 ms
76,488 KB
testcase_05 AC 142 ms
76,392 KB
testcase_06 AC 152 ms
76,304 KB
testcase_07 AC 117 ms
76,220 KB
testcase_08 AC 125 ms
76,416 KB
testcase_09 AC 158 ms
76,628 KB
testcase_10 AC 151 ms
76,160 KB
testcase_11 AC 130 ms
76,672 KB
testcase_12 AC 152 ms
76,104 KB
testcase_13 AC 127 ms
76,416 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 47 ms
60,800 KB
testcase_20 AC 44 ms
59,392 KB
testcase_21 AC 44 ms
60,032 KB
testcase_22 AC 46 ms
60,672 KB
testcase_23 AC 45 ms
60,672 KB
testcase_24 AC 48 ms
61,312 KB
testcase_25 AC 43 ms
59,648 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 68 ms
71,296 KB
testcase_29 WA -
testcase_30 AC 50 ms
61,696 KB
testcase_31 AC 68 ms
70,912 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N, M = map(int, input().split())
inward = [0]*(N+1)
outward = [0]*(N+1)
for i in range(M):
    u, v = map(int, input().split())
    outward[u] += 1
    inward[v] += 1

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