結果

問題 No.812 Change of Class
ユーザー amyuamyu
提出日時 2019-04-13 01:37:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,234 ms / 4,000 ms
コード長 744 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 156,548 KB
最終ジャッジ日時 2024-06-12 20:30:32
合計ジャッジ時間 28,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
105,260 KB
testcase_01 AC 135 ms
79,244 KB
testcase_02 AC 216 ms
89,960 KB
testcase_03 AC 378 ms
111,908 KB
testcase_04 AC 343 ms
106,880 KB
testcase_05 AC 1,234 ms
105,700 KB
testcase_06 AC 965 ms
102,808 KB
testcase_07 AC 47 ms
58,832 KB
testcase_08 AC 43 ms
58,596 KB
testcase_09 AC 1,093 ms
107,992 KB
testcase_10 AC 1,113 ms
106,220 KB
testcase_11 AC 104 ms
85,608 KB
testcase_12 AC 701 ms
101,204 KB
testcase_13 AC 43 ms
52,332 KB
testcase_14 AC 45 ms
52,636 KB
testcase_15 AC 792 ms
96,200 KB
testcase_16 AC 121 ms
77,460 KB
testcase_17 AC 647 ms
96,680 KB
testcase_18 AC 696 ms
91,836 KB
testcase_19 AC 594 ms
93,848 KB
testcase_20 AC 1,140 ms
108,504 KB
testcase_21 AC 525 ms
91,084 KB
testcase_22 AC 244 ms
84,864 KB
testcase_23 AC 119 ms
77,236 KB
testcase_24 AC 128 ms
78,100 KB
testcase_25 AC 191 ms
82,900 KB
testcase_26 AC 847 ms
101,340 KB
testcase_27 AC 881 ms
97,712 KB
testcase_28 AC 465 ms
94,112 KB
testcase_29 AC 152 ms
79,444 KB
testcase_30 AC 674 ms
96,320 KB
testcase_31 AC 556 ms
93,252 KB
testcase_32 AC 273 ms
85,268 KB
testcase_33 AC 668 ms
100,572 KB
testcase_34 AC 127 ms
77,144 KB
testcase_35 AC 186 ms
83,436 KB
testcase_36 AC 125 ms
77,984 KB
testcase_37 AC 348 ms
86,760 KB
testcase_38 AC 89 ms
81,952 KB
testcase_39 AC 360 ms
86,824 KB
testcase_40 AC 148 ms
79,336 KB
testcase_41 AC 76 ms
74,716 KB
testcase_42 AC 953 ms
96,348 KB
testcase_43 AC 192 ms
91,096 KB
testcase_44 AC 645 ms
90,988 KB
testcase_45 AC 139 ms
78,496 KB
testcase_46 AC 191 ms
94,428 KB
testcase_47 AC 581 ms
90,568 KB
testcase_48 AC 641 ms
93,440 KB
testcase_49 AC 178 ms
80,220 KB
testcase_50 AC 77 ms
71,956 KB
testcase_51 AC 199 ms
84,704 KB
testcase_52 AC 326 ms
94,368 KB
testcase_53 AC 148 ms
78,984 KB
testcase_54 AC 138 ms
78,972 KB
testcase_55 AC 315 ms
139,692 KB
testcase_56 AC 370 ms
144,244 KB
testcase_57 AC 356 ms
146,772 KB
testcase_58 AC 224 ms
117,652 KB
testcase_59 AC 391 ms
156,548 KB
testcase_60 AC 41 ms
52,496 KB
testcase_61 AC 39 ms
53,368 KB
testcase_62 AC 39 ms
53,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int, input().split())
pq = [list(map(int, input().split())) for i in range(m)] 
Q=int(input())
a = [int(input()) for i in range(Q)]
b=[[] for i in range(n+1)]
for i in pq:
    p=i[0]
    q=i[1]
    b[p].append(q)
    b[q].append(p)
for i in a:
    if(b[i]==[]):
        print(0,0)
        continue
    que=[i]
    check=[0 for i in range(n+1)]
    check[i]=1
    fri=0
    dif=-1
    while len(que)>0:
        tmpl=que.copy()
        que=[]
        for j in tmpl:
            for k in b[j]:
                if(check[k]==0):
                    que.append(k)
                    check[k]=1
                    fri+=1
        dif+=1
    day=0
    while dif!=1:
        dif=-(-dif//2)
        day+=1
    print(fri,day)
                    
0