結果

問題 No.812 Change of Class
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-12 21:40:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,794 ms / 4,000 ms
コード長 2,259 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,096 KB
最終ジャッジ日時 2024-06-12 21:38:40
合計ジャッジ時間 72,642 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,808 ms
32,128 KB
testcase_01 AC 291 ms
13,824 KB
testcase_02 AC 984 ms
22,400 KB
testcase_03 AC 2,100 ms
36,096 KB
testcase_04 AC 1,818 ms
33,124 KB
testcase_05 AC 3,794 ms
32,724 KB
testcase_06 AC 3,590 ms
31,456 KB
testcase_07 AC 105 ms
16,000 KB
testcase_08 AC 57 ms
12,544 KB
testcase_09 AC 3,090 ms
34,088 KB
testcase_10 AC 3,092 ms
34,052 KB
testcase_11 AC 322 ms
25,344 KB
testcase_12 AC 1,857 ms
30,816 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 2,116 ms
25,856 KB
testcase_16 AC 117 ms
11,904 KB
testcase_17 AC 2,000 ms
27,136 KB
testcase_18 AC 1,367 ms
22,528 KB
testcase_19 AC 1,566 ms
24,704 KB
testcase_20 AC 3,322 ms
33,384 KB
testcase_21 AC 1,194 ms
22,144 KB
testcase_22 AC 506 ms
16,128 KB
testcase_23 AC 98 ms
11,776 KB
testcase_24 AC 152 ms
12,288 KB
testcase_25 AC 414 ms
14,848 KB
testcase_26 AC 2,649 ms
29,696 KB
testcase_27 AC 2,441 ms
27,392 KB
testcase_28 AC 1,625 ms
24,740 KB
testcase_29 AC 347 ms
13,568 KB
testcase_30 AC 2,279 ms
26,496 KB
testcase_31 AC 1,576 ms
23,936 KB
testcase_32 AC 637 ms
17,528 KB
testcase_33 AC 1,985 ms
28,544 KB
testcase_34 AC 132 ms
12,288 KB
testcase_35 AC 311 ms
14,464 KB
testcase_36 AC 152 ms
12,288 KB
testcase_37 AC 801 ms
17,536 KB
testcase_38 AC 135 ms
17,152 KB
testcase_39 AC 825 ms
17,684 KB
testcase_40 AC 208 ms
12,928 KB
testcase_41 AC 122 ms
16,256 KB
testcase_42 AC 2,193 ms
24,448 KB
testcase_43 AC 392 ms
21,248 KB
testcase_44 AC 1,428 ms
20,480 KB
testcase_45 AC 154 ms
12,160 KB
testcase_46 AC 352 ms
20,896 KB
testcase_47 AC 1,268 ms
20,608 KB
testcase_48 AC 1,338 ms
23,168 KB
testcase_49 AC 357 ms
13,952 KB
testcase_50 AC 45 ms
11,008 KB
testcase_51 AC 328 ms
15,744 KB
testcase_52 AC 678 ms
21,888 KB
testcase_53 AC 242 ms
12,928 KB
testcase_54 AC 223 ms
12,672 KB
testcase_55 AC 1,301 ms
27,188 KB
testcase_56 AC 1,537 ms
30,080 KB
testcase_57 AC 1,655 ms
31,028 KB
testcase_58 AC 856 ms
21,772 KB
testcase_59 AC 1,877 ms
34,160 KB
testcase_60 AC 29 ms
10,880 KB
testcase_61 AC 29 ms
10,880 KB
testcase_62 AC 29 ms
10,880 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