結果
問題 | No.2403 "Eight" Bridges of Königsberg |
ユーザー | shobonvip |
提出日時 | 2023-08-04 22:16:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 923 bytes |
コンパイル時間 | 290 ms |
コンパイル使用メモリ | 81,928 KB |
実行使用メモリ | 88,876 KB |
最終ジャッジ日時 | 2024-10-14 20:15:18 |
合計ジャッジ時間 | 5,019 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,936 KB |
testcase_01 | AC | 38 ms
53,984 KB |
testcase_02 | AC | 39 ms
52,760 KB |
testcase_03 | AC | 38 ms
52,808 KB |
testcase_04 | AC | 161 ms
77,136 KB |
testcase_05 | AC | 228 ms
76,972 KB |
testcase_06 | AC | 241 ms
77,584 KB |
testcase_07 | AC | 173 ms
76,712 KB |
testcase_08 | AC | 197 ms
76,848 KB |
testcase_09 | AC | 249 ms
77,312 KB |
testcase_10 | AC | 210 ms
76,876 KB |
testcase_11 | AC | 203 ms
76,948 KB |
testcase_12 | AC | 236 ms
77,280 KB |
testcase_13 | AC | 213 ms
77,452 KB |
testcase_14 | WA | - |
testcase_15 | AC | 39 ms
53,576 KB |
testcase_16 | WA | - |
testcase_17 | AC | 39 ms
53,332 KB |
testcase_18 | AC | 39 ms
52,680 KB |
testcase_19 | AC | 59 ms
76,616 KB |
testcase_20 | AC | 47 ms
62,428 KB |
testcase_21 | AC | 53 ms
67,972 KB |
testcase_22 | AC | 57 ms
74,104 KB |
testcase_23 | AC | 57 ms
73,216 KB |
testcase_24 | AC | 63 ms
74,048 KB |
testcase_25 | AC | 52 ms
70,292 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 84 ms
85,436 KB |
testcase_29 | WA | - |
testcase_30 | AC | 60 ms
69,732 KB |
testcase_31 | AC | 89 ms
87,736 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
class UnionFind: def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x n, m = map(int,input().split()) uf = UnionFind(n) din = [0] * n dout = [0] * n for i in range(m): u, v = map(int,input().split()) u -= 1 v -= 1 din[v] += 1 dout[u] += 1 uf.union(u, v) tmp = [] r = set() for i in range(n): tmp.append(dout[i] - din[i]) if din[i] > 0: r.add(uf.find(i)) ren = len(r) # euler graph ans = 0 for i in range(n): if tmp[i] > 0: ans += tmp[i] #ans = min(ans, tar) if ans == 0: print(ren - 1) exit() # jun euler graph ans -= 1 #ans += ren - 1 print(ans)