結果

問題 No.812 Change of Class
ユーザー amyuamyu
提出日時 2019-04-13 01:35:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,634 ms / 4,000 ms
コード長 744 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 42,732 KB
最終ジャッジ日時 2024-06-12 20:13:33
合計ジャッジ時間 61,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,371 ms
35,712 KB
testcase_01 AC 367 ms
14,592 KB
testcase_02 AC 1,226 ms
24,448 KB
testcase_03 AC 2,634 ms
39,936 KB
testcase_04 AC 2,369 ms
36,608 KB
testcase_05 AC 2,327 ms
40,956 KB
testcase_06 AC 1,978 ms
38,528 KB
testcase_07 AC 35 ms
13,440 KB
testcase_08 AC 29 ms
11,648 KB
testcase_09 AC 2,077 ms
42,732 KB
testcase_10 AC 2,078 ms
42,564 KB
testcase_11 AC 144 ms
23,168 KB
testcase_12 AC 1,455 ms
37,848 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 1,596 ms
31,220 KB
testcase_16 AC 118 ms
12,288 KB
testcase_17 AC 1,347 ms
33,012 KB
testcase_18 AC 991 ms
26,844 KB
testcase_19 AC 1,168 ms
29,604 KB
testcase_20 AC 2,404 ms
41,872 KB
testcase_21 AC 980 ms
26,300 KB
testcase_22 AC 421 ms
17,992 KB
testcase_23 AC 94 ms
12,032 KB
testcase_24 AC 138 ms
12,928 KB
testcase_25 AC 348 ms
16,688 KB
testcase_26 AC 2,029 ms
36,920 KB
testcase_27 AC 1,822 ms
33,416 KB
testcase_28 AC 1,116 ms
29,456 KB
testcase_29 AC 267 ms
14,720 KB
testcase_30 AC 1,418 ms
32,348 KB
testcase_31 AC 1,221 ms
28,924 KB
testcase_32 AC 511 ms
20,004 KB
testcase_33 AC 1,567 ms
35,296 KB
testcase_34 AC 124 ms
12,672 KB
testcase_35 AC 296 ms
16,000 KB
testcase_36 AC 152 ms
12,544 KB
testcase_37 AC 768 ms
21,352 KB
testcase_38 AC 70 ms
15,744 KB
testcase_39 AC 807 ms
21,228 KB
testcase_40 AC 205 ms
13,952 KB
testcase_41 AC 53 ms
14,848 KB
testcase_42 AC 1,784 ms
31,308 KB
testcase_43 AC 255 ms
24,064 KB
testcase_44 AC 1,248 ms
25,456 KB
testcase_45 AC 161 ms
12,416 KB
testcase_46 AC 276 ms
23,296 KB
testcase_47 AC 1,324 ms
25,564 KB
testcase_48 AC 1,236 ms
28,696 KB
testcase_49 AC 359 ms
15,616 KB
testcase_50 AC 43 ms
10,880 KB
testcase_51 AC 301 ms
17,408 KB
testcase_52 AC 584 ms
25,860 KB
testcase_53 AC 249 ms
13,824 KB
testcase_54 AC 222 ms
13,696 KB
testcase_55 AC 1,320 ms
30,080 KB
testcase_56 AC 1,465 ms
33,536 KB
testcase_57 AC 1,530 ms
34,944 KB
testcase_58 AC 770 ms
23,424 KB
testcase_59 AC 1,676 ms
38,144 KB
testcase_60 AC 27 ms
10,752 KB
testcase_61 AC 27 ms
10,752 KB
testcase_62 AC 28 ms
10,624 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