結果

問題 No.812 Change of Class
ユーザー buey_tbuey_t
提出日時 2023-04-01 15:48:01
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,375 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 296,116 KB
最終ジャッジ日時 2024-09-24 11:06:17
合計ジャッジ時間 87,196 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 819 ms
277,412 KB
testcase_01 AC 267 ms
111,700 KB
testcase_02 AC 496 ms
171,920 KB
testcase_03 AC 952 ms
293,800 KB
testcase_04 AC 861 ms
296,116 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 144 ms
90,108 KB
testcase_08 AC 144 ms
89,876 KB
testcase_09 AC 3,634 ms
275,512 KB
testcase_10 AC 3,829 ms
278,504 KB
testcase_11 AC 207 ms
100,812 KB
testcase_12 AC 2,224 ms
270,412 KB
testcase_13 AC 139 ms
89,496 KB
testcase_14 AC 137 ms
89,332 KB
testcase_15 AC 2,637 ms
267,156 KB
testcase_16 AC 420 ms
97,856 KB
testcase_17 AC 2,364 ms
270,156 KB
testcase_18 AC 1,868 ms
210,568 KB
testcase_19 AC 2,098 ms
266,500 KB
testcase_20 AC 3,889 ms
275,528 KB
testcase_21 AC 1,693 ms
199,388 KB
testcase_22 AC 840 ms
135,100 KB
testcase_23 AC 375 ms
95,832 KB
testcase_24 AC 457 ms
99,756 KB
testcase_25 AC 770 ms
126,472 KB
testcase_26 AC 3,361 ms
273,916 KB
testcase_27 AC 2,795 ms
269,740 KB
testcase_28 AC 2,006 ms
266,124 KB
testcase_29 AC 700 ms
112,696 KB
testcase_30 AC 2,609 ms
269,520 KB
testcase_31 AC 2,137 ms
267,944 KB
testcase_32 AC 1,069 ms
148,788 KB
testcase_33 AC 2,555 ms
269,696 KB
testcase_34 AC 469 ms
98,828 KB
testcase_35 AC 537 ms
119,444 KB
testcase_36 AC 380 ms
100,184 KB
testcase_37 AC 1,173 ms
176,052 KB
testcase_38 AC 179 ms
90,776 KB
testcase_39 AC 1,165 ms
175,376 KB
testcase_40 AC 450 ms
104,688 KB
testcase_41 AC 172 ms
90,692 KB
testcase_42 AC 2,315 ms
270,636 KB
testcase_43 AC 425 ms
114,900 KB
testcase_44 AC 1,754 ms
264,812 KB
testcase_45 AC 388 ms
100,628 KB
testcase_46 AC 387 ms
111,532 KB
testcase_47 AC 1,773 ms
264,048 KB
testcase_48 AC 1,628 ms
257,344 KB
testcase_49 AC 645 ms
126,544 KB
testcase_50 AC 253 ms
90,992 KB
testcase_51 AC 595 ms
120,176 KB
testcase_52 AC 818 ms
146,940 KB
testcase_53 AC 500 ms
108,988 KB
testcase_54 AC 490 ms
106,556 KB
testcase_55 AC 1,757 ms
270,804 KB
testcase_56 AC 2,035 ms
279,232 KB
testcase_57 AC 2,152 ms
275,836 KB
testcase_58 AC 1,132 ms
245,876 KB
testcase_59 AC 2,468 ms
285,512 KB
testcase_60 AC 127 ms
84,980 KB
testcase_61 AC 128 ms
85,328 KB
testcase_62 AC 127 ms
85,324 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)
    
    ans = [(-1,0)]*(N+1)
    
    q = int(input())
    for _ in range(q):
        A = int(input())
        if ans[A][0] != -1:
            print(*ans[A])
            continue
        
        seen = set()
        
        Q = []
        heappush(Q,(-1,A))
        
        while len(Q) > 0:
            cnt,pos = heappop(Q)
            if pos in seen:
                continue
            
            memo[A].add(pos)
            seen.add(pos)
            
            if len(memo[A])-1 > ans[A][0]:
                ans[A] = (len(memo[A])-1,cnt)
            
            for nx in G[pos]:
                if nx not in seen:
                    heappush(Q,(cnt+1,nx))
        
        tmp = ans[A][1]
        cnt = 0
        while tmp > 0:
            cnt += 1
            tmp //= 2
            
        ans[A] = (ans[A][0],cnt)
        print(*ans[A])
        
        
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0