結果

問題 No.812 Change of Class
ユーザー polylogKpolylogK
提出日時 2019-04-12 22:53:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 122 ms / 4,000 ms
コード長 1,069 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 60,916 KB
実行使用メモリ 9,020 KB
最終ジャッジ日時 2024-06-12 19:43:26
合計ジャッジ時間 4,414 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
7,552 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 22 ms
6,944 KB
testcase_03 AC 49 ms
8,448 KB
testcase_04 AC 47 ms
7,680 KB
testcase_05 AC 122 ms
7,764 KB
testcase_06 AC 94 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 102 ms
8,588 KB
testcase_10 AC 105 ms
8,464 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 69 ms
8,124 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 73 ms
6,940 KB
testcase_16 AC 6 ms
6,940 KB
testcase_17 AC 68 ms
6,940 KB
testcase_18 AC 52 ms
6,940 KB
testcase_19 AC 59 ms
6,940 KB
testcase_20 AC 107 ms
8,420 KB
testcase_21 AC 50 ms
6,940 KB
testcase_22 AC 23 ms
6,940 KB
testcase_23 AC 5 ms
6,944 KB
testcase_24 AC 8 ms
6,944 KB
testcase_25 AC 18 ms
6,944 KB
testcase_26 AC 96 ms
7,424 KB
testcase_27 AC 87 ms
6,992 KB
testcase_28 AC 57 ms
6,940 KB
testcase_29 AC 13 ms
6,940 KB
testcase_30 AC 71 ms
6,940 KB
testcase_31 AC 62 ms
6,944 KB
testcase_32 AC 28 ms
6,940 KB
testcase_33 AC 75 ms
7,296 KB
testcase_34 AC 6 ms
6,944 KB
testcase_35 AC 15 ms
6,944 KB
testcase_36 AC 6 ms
6,940 KB
testcase_37 AC 33 ms
6,940 KB
testcase_38 AC 5 ms
6,944 KB
testcase_39 AC 35 ms
6,940 KB
testcase_40 AC 10 ms
6,940 KB
testcase_41 AC 4 ms
6,944 KB
testcase_42 AC 72 ms
6,940 KB
testcase_43 AC 17 ms
6,940 KB
testcase_44 AC 50 ms
6,944 KB
testcase_45 AC 6 ms
6,940 KB
testcase_46 AC 17 ms
6,944 KB
testcase_47 AC 48 ms
6,940 KB
testcase_48 AC 56 ms
6,940 KB
testcase_49 AC 14 ms
6,940 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 17 ms
6,940 KB
testcase_52 AC 33 ms
6,940 KB
testcase_53 AC 10 ms
6,940 KB
testcase_54 AC 8 ms
6,944 KB
testcase_55 AC 31 ms
7,208 KB
testcase_56 AC 37 ms
8,068 KB
testcase_57 AC 39 ms
8,420 KB
testcase_58 AC 21 ms
6,940 KB
testcase_59 AC 45 ms
9,020 KB
testcase_60 AC 1 ms
6,940 KB
testcase_61 AC 1 ms
6,940 KB
testcase_62 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <queue>
#include <vector>
#include <algorithm>

int main() {
    int n, m; scanf("%d%d", &n, &m);
    std::vector<std::vector<int>> g(n);
    for(int i = 0; i < m; i++) {
        int a, b; scanf("%d%d", &a, &b);

        g[a - 1].push_back(b - 1);
        g[b - 1].push_back(a - 1);
    }

    int q; scanf("%d", &q);
    while(q--) {
        int s; scanf("%d", &s); s--;

        std::queue<int> qu; qu.push(s);
        std::vector<int> min_cost(n, 1 << 30); min_cost[s] = 0;
        while(!qu.empty()) {
            auto p = qu.front(); qu.pop();

            for(auto e: g[p]) {
                if(min_cost[p] + 1 >= min_cost[e]) continue;
                min_cost[e] = min_cost[p] + 1;
                qu.push(e);
            }
        }
        
        int ma = 0, count = 0;
        for(auto v: min_cost) {
            if(v == 1 << 30) continue;
            ma = std::max(ma, v - 1);
            count++;
        }

        int log = 0;
        while(ma >> log) log++;
        printf("%d %d\n", count - 1, log);
    }
    return 0;
}
0