結果
問題 | No.2403 "Eight" Bridges of Königsberg |
ユーザー | shobonvip |
提出日時 | 2023-08-04 22:09:23 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 958 bytes |
コンパイル時間 | 327 ms |
コンパイル使用メモリ | 82,280 KB |
実行使用メモリ | 92,800 KB |
最終ジャッジ日時 | 2024-10-14 20:06:30 |
合計ジャッジ時間 | 5,549 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,968 KB |
testcase_01 | AC | 41 ms
52,096 KB |
testcase_02 | AC | 41 ms
51,840 KB |
testcase_03 | AC | 38 ms
51,840 KB |
testcase_04 | AC | 161 ms
76,800 KB |
testcase_05 | AC | 223 ms
77,056 KB |
testcase_06 | AC | 228 ms
77,568 KB |
testcase_07 | AC | 174 ms
77,056 KB |
testcase_08 | AC | 201 ms
77,312 KB |
testcase_09 | AC | 243 ms
77,312 KB |
testcase_10 | AC | 222 ms
76,800 KB |
testcase_11 | AC | 209 ms
77,056 KB |
testcase_12 | AC | 247 ms
77,184 KB |
testcase_13 | AC | 219 ms
77,056 KB |
testcase_14 | RE | - |
testcase_15 | AC | 40 ms
51,968 KB |
testcase_16 | RE | - |
testcase_17 | AC | 38 ms
51,968 KB |
testcase_18 | AC | 37 ms
52,096 KB |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
ソースコード
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) tmp.sort() # 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 assert ren == 1 ans -= 1 ans = max(ans, ren - 1) print(ans)