結果

問題 No.812 Change of Class
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-04-15 23:16:16
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 173 ms / 4,000 ms
コード長 1,277 bytes
コンパイル時間 864 ms
コンパイル使用メモリ 102,640 KB
最終ジャッジ日時 2025-01-07 02:14:51
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
8,320 KB
testcase_01 AC 13 ms
6,820 KB
testcase_02 AC 43 ms
6,820 KB
testcase_03 AC 96 ms
9,216 KB
testcase_04 AC 76 ms
8,576 KB
testcase_05 AC 173 ms
8,800 KB
testcase_06 AC 144 ms
7,424 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 158 ms
9,360 KB
testcase_10 AC 163 ms
9,240 KB
testcase_11 AC 18 ms
7,300 KB
testcase_12 AC 111 ms
8,896 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 109 ms
7,408 KB
testcase_16 AC 9 ms
6,824 KB
testcase_17 AC 106 ms
7,552 KB
testcase_18 AC 82 ms
6,820 KB
testcase_19 AC 92 ms
7,040 KB
testcase_20 AC 171 ms
9,188 KB
testcase_21 AC 77 ms
6,820 KB
testcase_22 AC 36 ms
6,820 KB
testcase_23 AC 7 ms
6,824 KB
testcase_24 AC 10 ms
6,824 KB
testcase_25 AC 28 ms
6,820 KB
testcase_26 AC 138 ms
8,192 KB
testcase_27 AC 118 ms
7,764 KB
testcase_28 AC 87 ms
6,912 KB
testcase_29 AC 20 ms
6,820 KB
testcase_30 AC 111 ms
7,588 KB
testcase_31 AC 96 ms
6,912 KB
testcase_32 AC 45 ms
6,816 KB
testcase_33 AC 113 ms
8,064 KB
testcase_34 AC 10 ms
6,820 KB
testcase_35 AC 23 ms
6,820 KB
testcase_36 AC 8 ms
6,820 KB
testcase_37 AC 51 ms
6,820 KB
testcase_38 AC 7 ms
6,824 KB
testcase_39 AC 53 ms
6,820 KB
testcase_40 AC 15 ms
6,816 KB
testcase_41 AC 5 ms
6,820 KB
testcase_42 AC 110 ms
7,468 KB
testcase_43 AC 33 ms
6,820 KB
testcase_44 AC 73 ms
6,820 KB
testcase_45 AC 9 ms
6,816 KB
testcase_46 AC 31 ms
6,824 KB
testcase_47 AC 75 ms
6,816 KB
testcase_48 AC 84 ms
7,040 KB
testcase_49 AC 22 ms
6,816 KB
testcase_50 AC 2 ms
6,820 KB
testcase_51 AC 26 ms
6,816 KB
testcase_52 AC 58 ms
6,820 KB
testcase_53 AC 16 ms
6,816 KB
testcase_54 AC 12 ms
6,816 KB
testcase_55 AC 54 ms
8,104 KB
testcase_56 AC 67 ms
8,840 KB
testcase_57 AC 74 ms
9,064 KB
testcase_58 AC 38 ms
6,816 KB
testcase_59 AC 84 ms
9,792 KB
testcase_60 AC 1 ms
6,816 KB
testcase_61 AC 2 ms
6,820 KB
testcase_62 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
#include<algorithm>
#include<cmath>

int main() {
    int n, m;
    std::cin >> n >> m;

    std::vector<std::vector<int>> nxts(n, std::vector<int>());
    for (int i = 0; i < m; i++) {
        int p, q;
        std::cin >> p >> q;
        p--;
        q--;
        nxts[p].push_back(q);
        nxts[q].push_back(p);
    }

    int q;
    std::cin >> q;

    for (int i = 0; i < q; i++) {
        int a;
        std::cin >> a;
        a--;

        int inf = 1000000007;
        std::vector<int> d(n, inf);
        d[a] = 0;
        std::queue<int> que;
        que.push(a);
        while(!que.empty()){
            int x = que.front();
            que.pop();
            for (auto&& y : nxts[x]) {
                if (d[x] + 1 < d[y]) {
                    d[y] = d[x] + 1;
                    que.push(y); 
                }
            }
        }

        int b = 0;
        int c = 0;
        for (auto&& v : d) {
            if (v != 0 && v != inf) {
                b++;
                c = std::max(c, v);
            }
        }

        if (c == 0) {
            std::cout << b << " " << c << std::endl;
        } else {
            std::cout << b << " " << std::ceil(std::log2(c)) << std::endl;
        }
    }
} 
0