結果
問題 | No.2403 "Eight" Bridges of Königsberg |
ユーザー | tassei903 |
提出日時 | 2023-08-04 21:58:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 217 ms / 2,000 ms |
コード長 | 2,342 bytes |
コンパイル時間 | 423 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 118,656 KB |
最終ジャッジ日時 | 2024-11-26 17:47:10 |
合計ジャッジ時間 | 5,985 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
54,912 KB |
testcase_01 | AC | 49 ms
54,528 KB |
testcase_02 | AC | 49 ms
54,528 KB |
testcase_03 | AC | 51 ms
54,528 KB |
testcase_04 | AC | 164 ms
77,440 KB |
testcase_05 | AC | 216 ms
77,312 KB |
testcase_06 | AC | 217 ms
77,824 KB |
testcase_07 | AC | 155 ms
77,440 KB |
testcase_08 | AC | 193 ms
77,824 KB |
testcase_09 | AC | 210 ms
77,824 KB |
testcase_10 | AC | 183 ms
77,312 KB |
testcase_11 | AC | 188 ms
77,696 KB |
testcase_12 | AC | 200 ms
77,312 KB |
testcase_13 | AC | 192 ms
77,696 KB |
testcase_14 | AC | 46 ms
54,656 KB |
testcase_15 | AC | 43 ms
54,912 KB |
testcase_16 | AC | 45 ms
55,040 KB |
testcase_17 | AC | 47 ms
54,784 KB |
testcase_18 | AC | 44 ms
54,656 KB |
testcase_19 | AC | 116 ms
110,720 KB |
testcase_20 | AC | 66 ms
72,320 KB |
testcase_21 | AC | 81 ms
87,936 KB |
testcase_22 | AC | 111 ms
110,208 KB |
testcase_23 | AC | 114 ms
110,080 KB |
testcase_24 | AC | 127 ms
103,296 KB |
testcase_25 | AC | 110 ms
106,240 KB |
testcase_26 | AC | 52 ms
55,808 KB |
testcase_27 | AC | 169 ms
118,656 KB |
testcase_28 | AC | 151 ms
108,928 KB |
testcase_29 | AC | 116 ms
81,664 KB |
testcase_30 | AC | 111 ms
94,336 KB |
testcase_31 | AC | 177 ms
117,376 KB |
testcase_32 | AC | 112 ms
77,184 KB |
testcase_33 | AC | 112 ms
89,856 KB |
testcase_34 | AC | 131 ms
79,744 KB |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ####################################################################### from collections import defaultdict 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 def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return len(self.roots()) def all_group_members(self): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members def __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) n, m = na() uf = UnionFind(n) d = [0 for i in range(n)] e = [0 for i in range(n)] for _ in range(m): u,v = na() u-=1 v-=1 d[u] += 1 d[v] -= 1 e[u] += 1 e[v] += 1 uf.union(u, v) g = uf.all_group_members() from heapq import * hq = [] for i in g: x = 0 y = 0 for j in g[i]: x += max(0, d[j]) y += e[j] if y == 0: continue heappush(hq, -x) ans = 0 #print(hq) while len(hq) > 1: #print(hq) x = -heappop(hq) y = -heappop(hq) ans += 1 if x and y: heappush(hq, -(x + y-1)) elif x or y: heappush(hq, -x-y) else: heappush(hq, -1) print(ans + max(-hq[0]-1, 0))