結果

問題 No.812 Change of Class
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-12 21:08:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,818 ms / 4,000 ms
コード長 2,282 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 247,776 KB
最終ジャッジ日時 2024-06-12 21:32:28
合計ジャッジ時間 75,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 478 ms
121,900 KB
testcase_01 AC 185 ms
79,756 KB
testcase_02 AC 338 ms
99,388 KB
testcase_03 AC 564 ms
135,420 KB
testcase_04 AC 518 ms
125,372 KB
testcase_05 AC 3,814 ms
202,520 KB
testcase_06 AC 3,818 ms
207,944 KB
testcase_07 AC 115 ms
90,212 KB
testcase_08 AC 71 ms
76,552 KB
testcase_09 AC 3,306 ms
178,788 KB
testcase_10 AC 3,172 ms
181,252 KB
testcase_11 AC 264 ms
98,820 KB
testcase_12 AC 1,801 ms
133,456 KB
testcase_13 AC 38 ms
54,948 KB
testcase_14 AC 40 ms
53,196 KB
testcase_15 AC 2,383 ms
149,168 KB
testcase_16 AC 342 ms
80,288 KB
testcase_17 AC 2,220 ms
144,680 KB
testcase_18 AC 1,900 ms
126,504 KB
testcase_19 AC 2,029 ms
132,956 KB
testcase_20 AC 3,191 ms
180,788 KB
testcase_21 AC 1,608 ms
121,824 KB
testcase_22 AC 935 ms
96,276 KB
testcase_23 AC 412 ms
81,004 KB
testcase_24 AC 380 ms
81,072 KB
testcase_25 AC 857 ms
92,512 KB
testcase_26 AC 3,136 ms
170,632 KB
testcase_27 AC 2,434 ms
151,600 KB
testcase_28 AC 1,914 ms
133,604 KB
testcase_29 AC 688 ms
87,252 KB
testcase_30 AC 2,359 ms
147,036 KB
testcase_31 AC 2,020 ms
134,192 KB
testcase_32 AC 930 ms
99,816 KB
testcase_33 AC 2,428 ms
148,536 KB
testcase_34 AC 374 ms
80,628 KB
testcase_35 AC 533 ms
87,584 KB
testcase_36 AC 363 ms
81,736 KB
testcase_37 AC 1,065 ms
102,208 KB
testcase_38 AC 155 ms
91,304 KB
testcase_39 AC 996 ms
101,708 KB
testcase_40 AC 380 ms
82,332 KB
testcase_41 AC 145 ms
90,348 KB
testcase_42 AC 2,051 ms
127,924 KB
testcase_43 AC 463 ms
93,160 KB
testcase_44 AC 1,488 ms
113,256 KB
testcase_45 AC 370 ms
81,260 KB
testcase_46 AC 431 ms
98,220 KB
testcase_47 AC 1,425 ms
113,168 KB
testcase_48 AC 1,344 ms
114,156 KB
testcase_49 AC 572 ms
88,044 KB
testcase_50 AC 163 ms
77,480 KB
testcase_51 AC 537 ms
90,868 KB
testcase_52 AC 787 ms
102,696 KB
testcase_53 AC 487 ms
84,444 KB
testcase_54 AC 432 ms
83,060 KB
testcase_55 AC 1,313 ms
190,148 KB
testcase_56 AC 1,536 ms
218,472 KB
testcase_57 AC 1,651 ms
223,452 KB
testcase_58 AC 863 ms
148,160 KB
testcase_59 AC 1,857 ms
247,776 KB
testcase_60 AC 39 ms
53,064 KB
testcase_61 AC 39 ms
53,328 KB
testcase_62 AC 43 ms
53,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop

class UnionFind :
    def __init__(self, size) :
        self.parent = list(range(size))
        self.height = [0] * size
        self.size = [1] * size
        self.component = size

    def root(self, index) :
        if self.parent[index] == index :  # 根の場合
            return index
        rootIndex = self.root(self.parent[index])  # 葉の場合親の根を取得
        self.parent[index] = rootIndex  # 親の付け直し
        return rootIndex

    def union(self, index1, index2) :  # 結合
        root1 = self.root(index1)
        root2 = self.root(index2)

        if root1 == root2 :  # 連結されている場合
            return

        self.component -= 1  # 連結成分を減らす

        if self.height[root1] < self.height[root2] :
            self.parent[root1] = root2  # root2に結合
            self.size[root2] += self.size[root1]
        else :
            self.parent[root2] = root1  # root1に結合
            self.size[root1] += self.size[root2]
            if self.height[root1] == self.height[root2] :
                self.height[root1] += 1
        return

    def isSameRoot(self, index1, index2) :
        return self.root(index1) == self.root(index2)

    def sizeOfSameRoot(self, index) :
        return self.size[self.root(index)]

    def getComponent(self) :
        return self.component

N, M = map(int, input().split())
tree = UnionFind(N)
edges = [[] for _ in range(N)]

for _ in range(M):
    p, q = map(int, input().split())
    p -= 1
    q -= 1
    tree.union(p, q)
    edges[p].append(q)
    edges[q].append(p)

def search(start):
    que = [(0, start)]
    minDist = [float('inf')] * N
    while que:
        d, now = heappop(que)
        if minDist[now] <= d:
            continue
        minDist[now] = d
        for to in edges[now]:
            if minDist[to] > d + 1:
                heappush(que, (d + 1, to))

    D = [d - 1 for d in minDist if 1 <= d and d != float('inf')]
    if D:
        return max(D)
    else:
        return 0

# Qが十分小さい
Q = int(input())
ans = []
for _ in range(Q):
    A = int(input())
    A -= 1
    dist = search(A)
    day = dist.bit_length()
    ans.append((tree.sizeOfSameRoot(A) - 1, day))

for a, b in ans:
    print(a, b)
0