結果

問題 No.812 Change of Class
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-11-12 21:05:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,548 ms / 4,000 ms
コード長 2,313 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 248,228 KB
最終ジャッジ日時 2024-06-12 21:46:46
合計ジャッジ時間 68,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 442 ms
121,136 KB
testcase_01 AC 172 ms
79,624 KB
testcase_02 AC 299 ms
98,616 KB
testcase_03 AC 532 ms
135,016 KB
testcase_04 AC 476 ms
125,112 KB
testcase_05 AC 3,508 ms
202,516 KB
testcase_06 AC 3,548 ms
207,056 KB
testcase_07 AC 104 ms
89,560 KB
testcase_08 AC 65 ms
76,692 KB
testcase_09 AC 2,912 ms
178,028 KB
testcase_10 AC 2,897 ms
180,104 KB
testcase_11 AC 252 ms
98,960 KB
testcase_12 AC 1,695 ms
132,812 KB
testcase_13 AC 36 ms
54,096 KB
testcase_14 AC 35 ms
53,252 KB
testcase_15 AC 2,215 ms
149,648 KB
testcase_16 AC 314 ms
80,184 KB
testcase_17 AC 1,943 ms
141,868 KB
testcase_18 AC 1,632 ms
125,840 KB
testcase_19 AC 1,856 ms
130,912 KB
testcase_20 AC 2,949 ms
181,088 KB
testcase_21 AC 1,456 ms
122,120 KB
testcase_22 AC 746 ms
94,728 KB
testcase_23 AC 355 ms
80,716 KB
testcase_24 AC 360 ms
81,072 KB
testcase_25 AC 738 ms
92,244 KB
testcase_26 AC 2,737 ms
168,672 KB
testcase_27 AC 2,250 ms
151,208 KB
testcase_28 AC 1,728 ms
131,208 KB
testcase_29 AC 572 ms
86,224 KB
testcase_30 AC 2,348 ms
145,724 KB
testcase_31 AC 1,726 ms
133,552 KB
testcase_32 AC 862 ms
99,688 KB
testcase_33 AC 2,112 ms
147,640 KB
testcase_34 AC 341 ms
80,756 KB
testcase_35 AC 479 ms
87,852 KB
testcase_36 AC 304 ms
80,592 KB
testcase_37 AC 912 ms
101,576 KB
testcase_38 AC 153 ms
90,716 KB
testcase_39 AC 937 ms
101,884 KB
testcase_40 AC 363 ms
82,684 KB
testcase_41 AC 137 ms
90,600 KB
testcase_42 AC 1,823 ms
127,412 KB
testcase_43 AC 460 ms
93,404 KB
testcase_44 AC 1,319 ms
112,360 KB
testcase_45 AC 322 ms
81,008 KB
testcase_46 AC 408 ms
98,120 KB
testcase_47 AC 1,323 ms
113,548 KB
testcase_48 AC 1,221 ms
113,696 KB
testcase_49 AC 512 ms
88,556 KB
testcase_50 AC 155 ms
77,252 KB
testcase_51 AC 493 ms
90,352 KB
testcase_52 AC 730 ms
102,440 KB
testcase_53 AC 434 ms
83,552 KB
testcase_54 AC 377 ms
82,284 KB
testcase_55 AC 1,239 ms
189,980 KB
testcase_56 AC 1,428 ms
218,504 KB
testcase_57 AC 1,516 ms
223,664 KB
testcase_58 AC 786 ms
147,416 KB
testcase_59 AC 1,716 ms
248,228 KB
testcase_60 AC 36 ms
53,084 KB
testcase_61 AC 37 ms
53,572 KB
testcase_62 AC 36 ms
53,800 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 = 0
    while (1 << day) <= dist:
        day += 1
    ans.append((tree.sizeOfSameRoot(A) - 1, day))

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