結果

問題 No.812 Change of Class
ユーザー stngstng
提出日時 2022-07-06 17:48:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 761 ms / 4,000 ms
コード長 904 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 161,788 KB
最終ジャッジ日時 2024-06-02 05:07:20
合計ジャッジ時間 19,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
95,268 KB
testcase_01 AC 121 ms
78,848 KB
testcase_02 AC 188 ms
85,488 KB
testcase_03 AC 312 ms
100,100 KB
testcase_04 AC 278 ms
95,168 KB
testcase_05 AC 761 ms
106,520 KB
testcase_06 AC 604 ms
101,848 KB
testcase_07 AC 51 ms
69,120 KB
testcase_08 AC 44 ms
63,104 KB
testcase_09 AC 686 ms
108,092 KB
testcase_10 AC 651 ms
108,324 KB
testcase_11 AC 103 ms
104,528 KB
testcase_12 AC 403 ms
100,868 KB
testcase_13 AC 40 ms
54,528 KB
testcase_14 AC 38 ms
54,016 KB
testcase_15 AC 489 ms
94,656 KB
testcase_16 AC 102 ms
77,516 KB
testcase_17 AC 419 ms
94,580 KB
testcase_18 AC 347 ms
90,240 KB
testcase_19 AC 382 ms
92,820 KB
testcase_20 AC 704 ms
104,724 KB
testcase_21 AC 325 ms
89,232 KB
testcase_22 AC 203 ms
83,364 KB
testcase_23 AC 111 ms
78,208 KB
testcase_24 AC 115 ms
77,916 KB
testcase_25 AC 168 ms
81,688 KB
testcase_26 AC 556 ms
100,324 KB
testcase_27 AC 496 ms
96,564 KB
testcase_28 AC 365 ms
92,244 KB
testcase_29 AC 145 ms
78,716 KB
testcase_30 AC 412 ms
94,352 KB
testcase_31 AC 351 ms
91,088 KB
testcase_32 AC 235 ms
83,732 KB
testcase_33 AC 490 ms
99,120 KB
testcase_34 AC 119 ms
78,336 KB
testcase_35 AC 163 ms
81,748 KB
testcase_36 AC 119 ms
78,272 KB
testcase_37 AC 275 ms
84,892 KB
testcase_38 AC 77 ms
85,848 KB
testcase_39 AC 275 ms
84,248 KB
testcase_40 AC 135 ms
78,576 KB
testcase_41 AC 73 ms
82,176 KB
testcase_42 AC 499 ms
93,956 KB
testcase_43 AC 151 ms
96,320 KB
testcase_44 AC 340 ms
87,808 KB
testcase_45 AC 120 ms
77,780 KB
testcase_46 AC 138 ms
95,900 KB
testcase_47 AC 330 ms
88,220 KB
testcase_48 AC 363 ms
89,624 KB
testcase_49 AC 166 ms
79,600 KB
testcase_50 AC 80 ms
76,536 KB
testcase_51 AC 170 ms
83,328 KB
testcase_52 AC 228 ms
91,236 KB
testcase_53 AC 143 ms
78,592 KB
testcase_54 AC 140 ms
78,592 KB
testcase_55 AC 289 ms
122,376 KB
testcase_56 AC 328 ms
137,188 KB
testcase_57 AC 342 ms
140,872 KB
testcase_58 AC 208 ms
104,496 KB
testcase_59 AC 390 ms
161,788 KB
testcase_60 AC 38 ms
55,540 KB
testcase_61 AC 39 ms
54,592 KB
testcase_62 AC 37 ms
54,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import bisect
n,m = map(int,input().split())
pq = [[] for i in range(n)]
for i in range(m):
    p,q = map(int,input().split())
    p -= 1
    q -= 1
    pq[p].append(q)
    pq[q].append(p)

q = int(input())
a = [int(input())-1 for i in range(q)]

ans = []
rui = [2**i for i in range(20)]
#idx = bisect.bisect_left(cnt,8)
#print(cnt)
#print(idx)

for i in range(q):
    chk = [0]*n
    chk[a[i]] = 1
    d = deque()
    d.append([a[i],0])
    mcnt = 0
    while len(d) > 0:
        tmp,cnt = d.popleft()
        for j in pq[tmp]:
            if chk[j] == 0:
                chk[j] = 1
                d.append([j,cnt+1])
                mcnt = cnt+1
    if mcnt == 0:
        ans.append([0,0])
    else:
        idx = bisect.bisect_left(rui,mcnt)
        #ans.append([sum(chk)-1,(mcnt+1)//2])
        ans.append([sum(chk)-1,idx])

for i in range(len(ans)):
    print(*ans[i])
0