結果

問題 No.812 Change of Class
ユーザー titiatitia
提出日時 2019-04-12 22:11:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 577 ms / 4,000 ms
コード長 887 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 119,608 KB
最終ジャッジ日時 2024-06-12 18:41:50
合計ジャッジ時間 16,870 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 450 ms
112,960 KB
testcase_01 AC 133 ms
81,508 KB
testcase_02 AC 280 ms
96,544 KB
testcase_03 AC 509 ms
119,212 KB
testcase_04 AC 464 ms
114,376 KB
testcase_05 AC 577 ms
106,016 KB
testcase_06 AC 487 ms
102,088 KB
testcase_07 AC 50 ms
71,860 KB
testcase_08 AC 42 ms
64,836 KB
testcase_09 AC 520 ms
110,032 KB
testcase_10 AC 552 ms
108,680 KB
testcase_11 AC 85 ms
102,176 KB
testcase_12 AC 357 ms
107,164 KB
testcase_13 AC 40 ms
60,380 KB
testcase_14 AC 39 ms
61,444 KB
testcase_15 AC 378 ms
97,672 KB
testcase_16 AC 96 ms
78,584 KB
testcase_17 AC 329 ms
98,724 KB
testcase_18 AC 282 ms
95,160 KB
testcase_19 AC 285 ms
97,500 KB
testcase_20 AC 565 ms
105,856 KB
testcase_21 AC 244 ms
92,688 KB
testcase_22 AC 177 ms
85,780 KB
testcase_23 AC 96 ms
78,512 KB
testcase_24 AC 100 ms
78,816 KB
testcase_25 AC 151 ms
85,112 KB
testcase_26 AC 441 ms
103,052 KB
testcase_27 AC 452 ms
100,604 KB
testcase_28 AC 309 ms
96,392 KB
testcase_29 AC 130 ms
80,224 KB
testcase_30 AC 364 ms
98,092 KB
testcase_31 AC 351 ms
95,192 KB
testcase_32 AC 173 ms
87,264 KB
testcase_33 AC 385 ms
103,976 KB
testcase_34 AC 97 ms
78,896 KB
testcase_35 AC 135 ms
85,356 KB
testcase_36 AC 97 ms
78,692 KB
testcase_37 AC 227 ms
88,044 KB
testcase_38 AC 61 ms
84,624 KB
testcase_39 AC 210 ms
88,424 KB
testcase_40 AC 108 ms
80,088 KB
testcase_41 AC 58 ms
80,184 KB
testcase_42 AC 425 ms
97,024 KB
testcase_43 AC 127 ms
95,740 KB
testcase_44 AC 278 ms
92,344 KB
testcase_45 AC 100 ms
78,976 KB
testcase_46 AC 127 ms
98,720 KB
testcase_47 AC 310 ms
92,196 KB
testcase_48 AC 309 ms
95,820 KB
testcase_49 AC 127 ms
81,340 KB
testcase_50 AC 62 ms
74,652 KB
testcase_51 AC 148 ms
87,788 KB
testcase_52 AC 201 ms
95,152 KB
testcase_53 AC 117 ms
80,080 KB
testcase_54 AC 106 ms
80,084 KB
testcase_55 AC 204 ms
103,484 KB
testcase_56 AC 233 ms
111,160 KB
testcase_57 AC 233 ms
114,540 KB
testcase_58 AC 161 ms
94,008 KB
testcase_59 AC 293 ms
119,608 KB
testcase_60 AC 46 ms
60,536 KB
testcase_61 AC 45 ms
60,288 KB
testcase_62 AC 39 ms
60,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import copy
from collections import deque
input = sys.stdin.readline

N,M=map(int,input().split())

FRIEND=[list(map(int,input().split())) for i in range(M)]
q=int(input())
Q=[int(input()) for i in range(q)]

EDGELIST=[[] for i in range(N+1)]

for x,y in FRIEND:
    EDGELIST[x].append(y)
    EDGELIST[y].append(x)


for query in Q:
    NQUE=deque()
    check=[0]*(N+1)

    check[query]=1
    for n in EDGELIST[query]:
        check[n]=1
        NQUE.append(n)

    DAY=0

    while NQUE:
        QUE=copy.copy(NQUE)
        NQUE=deque()
        dayflag=0

        while QUE:
            x=QUE.pop()

            for to in EDGELIST[x]:
                if check[to]==1:
                    continue
                NQUE.append(to)
                dayflag=1
                check[to]=1

        if dayflag==1:
            DAY+=1


    print(check.count(1)-1,DAY.bit_length())

0