結果

問題 No.2403 "Eight" Bridges of Königsberg
ユーザー tassei903tassei903
提出日時 2023-08-04 21:47:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,177 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 127,584 KB
最終ジャッジ日時 2024-10-14 19:44:19
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,912 KB
testcase_01 AC 44 ms
54,528 KB
testcase_02 AC 44 ms
54,528 KB
testcase_03 AC 43 ms
54,656 KB
testcase_04 AC 146 ms
77,184 KB
testcase_05 AC 193 ms
77,652 KB
testcase_06 AC 214 ms
77,824 KB
testcase_07 AC 156 ms
77,312 KB
testcase_08 AC 179 ms
77,696 KB
testcase_09 AC 215 ms
77,696 KB
testcase_10 AC 187 ms
77,184 KB
testcase_11 AC 187 ms
77,492 KB
testcase_12 AC 194 ms
77,440 KB
testcase_13 AC 192 ms
77,440 KB
testcase_14 AC 45 ms
54,528 KB
testcase_15 AC 44 ms
54,400 KB
testcase_16 WA -
testcase_17 AC 44 ms
54,656 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)]
for _ in range(m):
    u,v = na()
    u-=1
    v-=1
    d[u] += 1
    d[v] -= 1
    uf.union(u, v)
g = uf.all_group_members()
from heapq import *
hq = []
for i in g:
    x = 0
    for j in g[i]:
        x += max(0, d[j])
    heappush(hq, -x)
ans = 0
#print(hq)
while len(hq) > 1:
    #print(hq)
    x = -heappop(hq)
    y = -heappop(hq)
    ans += 1
    if x or y:
        heappush(hq, -(x + y-1))
    else:
        heappush(hq, -1)
print(ans + max(-hq[0]-1, 0))
0