結果

問題 No.812 Change of Class
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-12 21:41:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,056 ms / 4,000 ms
コード長 2,259 bytes
コンパイル時間 516 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 186,884 KB
最終ジャッジ日時 2024-06-12 21:39:49
合計ジャッジ時間 27,309 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
128,584 KB
testcase_01 AC 133 ms
79,768 KB
testcase_02 AC 243 ms
101,308 KB
testcase_03 AC 424 ms
146,568 KB
testcase_04 AC 369 ms
130,904 KB
testcase_05 AC 949 ms
151,700 KB
testcase_06 AC 835 ms
147,228 KB
testcase_07 AC 67 ms
80,708 KB
testcase_08 AC 48 ms
69,188 KB
testcase_09 AC 1,056 ms
144,976 KB
testcase_10 AC 1,007 ms
142,396 KB
testcase_11 AC 165 ms
130,444 KB
testcase_12 AC 691 ms
121,884 KB
testcase_13 AC 40 ms
54,940 KB
testcase_14 AC 38 ms
55,700 KB
testcase_15 AC 718 ms
118,144 KB
testcase_16 AC 153 ms
78,872 KB
testcase_17 AC 645 ms
118,812 KB
testcase_18 AC 519 ms
107,508 KB
testcase_19 AC 578 ms
112,632 KB
testcase_20 AC 1,011 ms
145,196 KB
testcase_21 AC 496 ms
101,996 KB
testcase_22 AC 336 ms
89,092 KB
testcase_23 AC 157 ms
78,336 KB
testcase_24 AC 170 ms
78,700 KB
testcase_25 AC 284 ms
84,560 KB
testcase_26 AC 877 ms
133,516 KB
testcase_27 AC 741 ms
123,184 KB
testcase_28 AC 619 ms
110,668 KB
testcase_29 AC 256 ms
80,864 KB
testcase_30 AC 672 ms
117,296 KB
testcase_31 AC 622 ms
107,416 KB
testcase_32 AC 331 ms
91,516 KB
testcase_33 AC 773 ms
119,720 KB
testcase_34 AC 162 ms
78,608 KB
testcase_35 AC 233 ms
84,356 KB
testcase_36 AC 164 ms
78,740 KB
testcase_37 AC 397 ms
96,072 KB
testcase_38 AC 110 ms
100,800 KB
testcase_39 AC 386 ms
96,004 KB
testcase_40 AC 207 ms
79,708 KB
testcase_41 AC 106 ms
97,884 KB
testcase_42 AC 786 ms
117,116 KB
testcase_43 AC 293 ms
102,964 KB
testcase_44 AC 519 ms
105,988 KB
testcase_45 AC 168 ms
79,212 KB
testcase_46 AC 240 ms
105,536 KB
testcase_47 AC 496 ms
107,668 KB
testcase_48 AC 539 ms
108,604 KB
testcase_49 AC 249 ms
81,192 KB
testcase_50 AC 81 ms
76,560 KB
testcase_51 AC 249 ms
86,972 KB
testcase_52 AC 361 ms
101,292 KB
testcase_53 AC 216 ms
80,348 KB
testcase_54 AC 194 ms
80,252 KB
testcase_55 AC 328 ms
140,644 KB
testcase_56 AC 393 ms
143,444 KB
testcase_57 AC 392 ms
160,536 KB
testcase_58 AC 235 ms
107,536 KB
testcase_59 AC 440 ms
186,884 KB
testcase_60 AC 39 ms
54,244 KB
testcase_61 AC 39 ms
53,668 KB
testcase_62 AC 39 ms
55,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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):
    INF = float('inf')
    minDist = [INF] * N
    que = deque([(start, 0)])

    while que:
        now, dist = que.popleft()
        if minDist[now] <= dist:
            continue
        minDist[now] = dist
        for to in edges[now]:
            que.append((to, dist + 1))

    D = [d - 1 for d in minDist if 1 <= d and d != 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