結果

問題 No.812 Change of Class
ユーザー buey_tbuey_t
提出日時 2023-04-01 15:52:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,880 ms / 4,000 ms
コード長 2,419 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 312,224 KB
最終ジャッジ日時 2024-09-24 11:07:26
合計ジャッジ時間 45,653 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 751 ms
270,820 KB
testcase_01 AC 266 ms
113,300 KB
testcase_02 AC 484 ms
173,352 KB
testcase_03 AC 918 ms
305,532 KB
testcase_04 AC 824 ms
278,476 KB
testcase_05 AC 1,839 ms
298,864 KB
testcase_06 AC 1,429 ms
245,928 KB
testcase_07 AC 138 ms
89,936 KB
testcase_08 AC 138 ms
89,516 KB
testcase_09 AC 1,715 ms
257,848 KB
testcase_10 AC 1,803 ms
257,352 KB
testcase_11 AC 202 ms
101,780 KB
testcase_12 AC 1,025 ms
219,952 KB
testcase_13 AC 138 ms
89,428 KB
testcase_14 AC 138 ms
89,164 KB
testcase_15 AC 1,226 ms
229,104 KB
testcase_16 AC 251 ms
94,140 KB
testcase_17 AC 1,104 ms
213,240 KB
testcase_18 AC 817 ms
171,668 KB
testcase_19 AC 960 ms
205,476 KB
testcase_20 AC 1,880 ms
265,632 KB
testcase_21 AC 824 ms
164,340 KB
testcase_22 AC 462 ms
128,140 KB
testcase_23 AC 234 ms
93,024 KB
testcase_24 AC 271 ms
96,568 KB
testcase_25 AC 393 ms
120,008 KB
testcase_26 AC 1,647 ms
254,208 KB
testcase_27 AC 1,478 ms
235,292 KB
testcase_28 AC 899 ms
202,340 KB
testcase_29 AC 338 ms
106,428 KB
testcase_30 AC 1,179 ms
229,932 KB
testcase_31 AC 1,017 ms
207,264 KB
testcase_32 AC 526 ms
135,848 KB
testcase_33 AC 1,246 ms
229,392 KB
testcase_34 AC 261 ms
94,624 KB
testcase_35 AC 356 ms
117,828 KB
testcase_36 AC 257 ms
96,584 KB
testcase_37 AC 671 ms
166,288 KB
testcase_38 AC 176 ms
91,324 KB
testcase_39 AC 674 ms
163,776 KB
testcase_40 AC 290 ms
101,640 KB
testcase_41 AC 169 ms
91,248 KB
testcase_42 AC 1,254 ms
247,752 KB
testcase_43 AC 307 ms
115,824 KB
testcase_44 AC 948 ms
226,040 KB
testcase_45 AC 256 ms
96,596 KB
testcase_46 AC 293 ms
112,076 KB
testcase_47 AC 935 ms
230,164 KB
testcase_48 AC 875 ms
208,912 KB
testcase_49 AC 386 ms
121,128 KB
testcase_50 AC 172 ms
90,428 KB
testcase_51 AC 351 ms
121,464 KB
testcase_52 AC 509 ms
148,192 KB
testcase_53 AC 303 ms
105,524 KB
testcase_54 AC 295 ms
103,228 KB
testcase_55 AC 686 ms
265,300 KB
testcase_56 AC 802 ms
310,504 KB
testcase_57 AC 814 ms
312,224 KB
testcase_58 AC 483 ms
182,152 KB
testcase_59 AC 935 ms
311,284 KB
testcase_60 AC 123 ms
85,308 KB
testcase_61 AC 124 ms
85,160 KB
testcase_62 AC 127 ms
85,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    #再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!
    
    
    '''
    クエリが少ない
    各クエリごとにダイクストラでよい
    そいつ以外のやつも友達になる
    だから、自分だけ考えればいいわけではない
    
    dpっぽさはあるな
    '''
    
    N,M = map(int, input().split())
    
    G = [[] for _ in range(N+1)]
    memo = [set() for _ in range(N+1)]
    for _ in range(M):
        p,q = map(int, input().split())
        G[p].append(q)
        G[q].append(p)
        memo[p].add(q)
        memo[q].add(p)
    
    ans1 = [-1]*(N+1)
    ans2 = [0]*(N+1)
    
    q = int(input())
    for _ in range(q):
        A = int(input())
        if ans1[A] != -1:
            print(ans1[A],ans2[A])
            continue
        
        seen = set()
        
        Q = deque()
        Q.append((-1,A))
        
        while len(Q) > 0:
            cnt,pos = Q.popleft()
            if pos in seen:
                continue
            
            memo[A].add(pos)
            seen.add(pos)
            
            if len(memo[A])-1 > ans1[A]:
                ans1[A] = len(memo[A])-1
                ans2[A] = cnt
            
            for nx in G[pos]:
                if nx not in seen:
                    Q.append((cnt+1,nx))
        
        tmp = ans2[A]
        cnt = 0
        while tmp > 0:
            cnt += 1
            tmp //= 2
            
        ans2[A] = cnt
        print(ans1[A],ans2[A])
        
        
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0