結果

問題 No.812 Change of Class
ユーザー rpy3cpprpy3cpp
提出日時 2019-04-14 03:55:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 140 ms / 4,000 ms
コード長 1,241 bytes
コンパイル時間 2,027 ms
コンパイル使用メモリ 173,968 KB
実行使用メモリ 9,852 KB
最終ジャッジ日時 2024-06-12 20:50:52
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
7,900 KB
testcase_01 AC 9 ms
6,944 KB
testcase_02 AC 27 ms
6,940 KB
testcase_03 AC 57 ms
8,704 KB
testcase_04 AC 50 ms
8,064 KB
testcase_05 AC 140 ms
8,428 KB
testcase_06 AC 121 ms
7,308 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 124 ms
9,068 KB
testcase_10 AC 130 ms
9,064 KB
testcase_11 AC 13 ms
6,944 KB
testcase_12 AC 79 ms
8,652 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 95 ms
6,944 KB
testcase_16 AC 8 ms
6,940 KB
testcase_17 AC 89 ms
7,168 KB
testcase_18 AC 61 ms
6,940 KB
testcase_19 AC 70 ms
6,944 KB
testcase_20 AC 134 ms
8,820 KB
testcase_21 AC 59 ms
6,940 KB
testcase_22 AC 27 ms
6,940 KB
testcase_23 AC 6 ms
6,940 KB
testcase_24 AC 9 ms
6,944 KB
testcase_25 AC 22 ms
6,944 KB
testcase_26 AC 112 ms
7,888 KB
testcase_27 AC 104 ms
7,424 KB
testcase_28 AC 73 ms
6,940 KB
testcase_29 AC 17 ms
6,940 KB
testcase_30 AC 93 ms
7,056 KB
testcase_31 AC 79 ms
6,944 KB
testcase_32 AC 34 ms
6,940 KB
testcase_33 AC 90 ms
7,764 KB
testcase_34 AC 9 ms
6,940 KB
testcase_35 AC 18 ms
6,944 KB
testcase_36 AC 7 ms
6,940 KB
testcase_37 AC 40 ms
6,944 KB
testcase_38 AC 6 ms
6,940 KB
testcase_39 AC 43 ms
6,940 KB
testcase_40 AC 12 ms
6,944 KB
testcase_41 AC 5 ms
6,944 KB
testcase_42 AC 85 ms
7,128 KB
testcase_43 AC 21 ms
6,940 KB
testcase_44 AC 59 ms
6,944 KB
testcase_45 AC 8 ms
6,944 KB
testcase_46 AC 20 ms
6,940 KB
testcase_47 AC 59 ms
6,944 KB
testcase_48 AC 68 ms
6,944 KB
testcase_49 AC 18 ms
6,940 KB
testcase_50 AC 3 ms
6,940 KB
testcase_51 AC 18 ms
6,940 KB
testcase_52 AC 37 ms
6,940 KB
testcase_53 AC 12 ms
6,940 KB
testcase_54 AC 10 ms
6,940 KB
testcase_55 AC 37 ms
7,604 KB
testcase_56 AC 48 ms
8,716 KB
testcase_57 AC 50 ms
9,008 KB
testcase_58 AC 26 ms
6,940 KB
testcase_59 AC 56 ms
9,852 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

pair<int, int> solve(int s, int N, const vector<vector<int>> & edges){
    vector<int> dist(N, -1);
    int f = 0;
    int d = 0;
    dist[s] = d;
    vector<int> pool = {s};
    vector<int> next_pool;
    while (pool.size()){
        next_pool.clear();
        ++d;
        for (auto p: pool){
            for (auto q: edges[p]){
                if (dist[q] == -1){
                    dist[q] = d;
                    next_pool.push_back(q);
                    ++f;
                }
            }
        }
        swap(pool, next_pool);
    }
    d = *max_element(dist.begin(), dist.end());
    int days = 0;
    int tmp = 1;
    while (d > tmp){
        ++days;
        tmp *= 2;
    }
    return make_pair(f, days);
}

int main()
{
    ios::sync_with_stdio(false);
    cout.tie(0);
    int N, M;
    cin >> N >> M;
    vector<vector<int>> edges(N);
    while (M--){
        int p, q;
        cin >> p >> q;
        edges[p - 1].push_back(q - 1);
        edges[q - 1].push_back(p - 1);
    }
    int Q;
    cin >> Q;
    while (Q--){
        int A;
        cin >> A;
        auto ans = solve(A - 1, N, edges);
        cout << ans.first << ' ' << ans.second << "\n";
    }
    return 0;
}
0