結果
問題 | No.2403 "Eight" Bridges of Königsberg |
ユーザー | flygon |
提出日時 | 2023-08-04 21:48:27 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,332 bytes |
コンパイル時間 | 180 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 81,792 KB |
最終ジャッジ日時 | 2024-10-14 19:45:19 |
合計ジャッジ時間 | 4,213 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
54,784 KB |
testcase_01 | AC | 48 ms
54,784 KB |
testcase_02 | AC | 47 ms
54,528 KB |
testcase_03 | AC | 48 ms
54,272 KB |
testcase_04 | AC | 105 ms
77,824 KB |
testcase_05 | AC | 144 ms
80,000 KB |
testcase_06 | AC | 151 ms
80,512 KB |
testcase_07 | AC | 114 ms
78,336 KB |
testcase_08 | AC | 123 ms
79,104 KB |
testcase_09 | AC | 158 ms
81,792 KB |
testcase_10 | AC | 152 ms
81,152 KB |
testcase_11 | AC | 131 ms
79,744 KB |
testcase_12 | AC | 153 ms
81,280 KB |
testcase_13 | AC | 131 ms
80,000 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 47 ms
54,656 KB |
testcase_19 | AC | 63 ms
70,528 KB |
testcase_20 | AC | 57 ms
63,360 KB |
testcase_21 | AC | 59 ms
66,304 KB |
testcase_22 | AC | 63 ms
69,632 KB |
testcase_23 | AC | 61 ms
68,480 KB |
testcase_24 | AC | 62 ms
68,224 KB |
testcase_25 | AC | 62 ms
67,840 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 69 ms
71,936 KB |
testcase_29 | WA | - |
testcase_30 | AC | 59 ms
65,792 KB |
testcase_31 | AC | 70 ms
73,856 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
import sys sys.setrecursionlimit(5*10**5) input = sys.stdin.readline from collections import defaultdict, deque, Counter from heapq import heappop, heappush from bisect import bisect_left, bisect_right from math import gcd from collections import defaultdict class UnionFind: def __init__(self, n): self.n = n self.p = [-1] * (n+1) def find(self, x): if self.p[x] < 0: return x else: self.p[x] = self.find(self.p[x]) return self.p[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.p[x] > self.p[y]: x, y = y, x self.p[x] += self.p[y] self.p[y] = x def same(self, a, b): return self.find(a) == self.find(b) def group(self): d = defaultdict(list) for i in range(1, self.n+1): par = self.find(i) d[par].append(i) return d n,m = map(int,input().split()) graph = [[] for i in range(n+1)] uf = UnionFind(n) indeg = [0]*(n+1) outdeg = [0]*(n+1) for i in range(m): a,b = map(int,input().split()) graph[a].append(b) indeg[b] += 1 outdeg[a] += 1 ans = 0 for i in range(1,n+1): if indeg[i] >= outdeg[i]: ans += indeg[i] - outdeg[i] print(max(ans-1, 0))