結果

問題 No.812 Change of Class
ユーザー veqccveqcc
提出日時 2019-04-12 22:36:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 411 ms / 4,000 ms
コード長 1,659 bytes
コンパイル時間 1,312 ms
コンパイル使用メモリ 114,840 KB
実行使用メモリ 10,944 KB
最終ジャッジ日時 2024-06-12 19:36:19
合計ジャッジ時間 11,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
8,648 KB
testcase_01 AC 13 ms
6,816 KB
testcase_02 AC 39 ms
7,388 KB
testcase_03 AC 79 ms
9,088 KB
testcase_04 AC 70 ms
8,616 KB
testcase_05 AC 411 ms
9,108 KB
testcase_06 AC 345 ms
8,400 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 375 ms
9,328 KB
testcase_10 AC 387 ms
9,328 KB
testcase_11 AC 18 ms
6,944 KB
testcase_12 AC 221 ms
8,800 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 282 ms
7,836 KB
testcase_16 AC 18 ms
6,940 KB
testcase_17 AC 234 ms
8,064 KB
testcase_18 AC 176 ms
7,424 KB
testcase_19 AC 207 ms
7,688 KB
testcase_20 AC 401 ms
9,016 KB
testcase_21 AC 170 ms
7,388 KB
testcase_22 AC 74 ms
6,944 KB
testcase_23 AC 14 ms
6,940 KB
testcase_24 AC 22 ms
6,944 KB
testcase_25 AC 60 ms
6,944 KB
testcase_26 AC 327 ms
8,448 KB
testcase_27 AC 293 ms
8,116 KB
testcase_28 AC 211 ms
7,552 KB
testcase_29 AC 46 ms
6,940 KB
testcase_30 AC 261 ms
8,016 KB
testcase_31 AC 228 ms
7,608 KB
testcase_32 AC 96 ms
6,940 KB
testcase_33 AC 267 ms
8,308 KB
testcase_34 AC 20 ms
6,940 KB
testcase_35 AC 48 ms
6,940 KB
testcase_36 AC 25 ms
6,944 KB
testcase_37 AC 133 ms
7,040 KB
testcase_38 AC 9 ms
6,944 KB
testcase_39 AC 135 ms
6,944 KB
testcase_40 AC 30 ms
6,944 KB
testcase_41 AC 8 ms
6,940 KB
testcase_42 AC 287 ms
8,056 KB
testcase_43 AC 30 ms
7,296 KB
testcase_44 AC 202 ms
7,376 KB
testcase_45 AC 26 ms
6,944 KB
testcase_46 AC 25 ms
7,108 KB
testcase_47 AC 194 ms
7,520 KB
testcase_48 AC 184 ms
7,656 KB
testcase_49 AC 59 ms
6,944 KB
testcase_50 AC 5 ms
6,944 KB
testcase_51 AC 47 ms
6,940 KB
testcase_52 AC 83 ms
7,460 KB
testcase_53 AC 40 ms
6,940 KB
testcase_54 AC 35 ms
6,940 KB
testcase_55 AC 225 ms
9,080 KB
testcase_56 AC 274 ms
10,260 KB
testcase_57 AC 291 ms
10,432 KB
testcase_58 AC 148 ms
8,032 KB
testcase_59 AC 332 ms
10,944 KB
testcase_60 AC 4 ms
6,940 KB
testcase_61 AC 3 ms
6,940 KB
testcase_62 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <random>
#include <bitset>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
using namespace std;
typedef pair <int, int> P;

vector <int> edges[100005];

int main() {
    cin.sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int n, m;
    cin >> n >> m;

    for (int i = 0; i < m; i++) {
        int p, q;
        cin >> p >> q;
        p--; q--;
        edges[p].push_back(q);
        edges[q].push_back(p);
    }

    int Q;
    cin >> Q;

    for (int x = 0; x < Q; x++) {
        int a;
        cin >> a;
        a--;

        priority_queue <P, vector<P>, greater<P>> q;
        q.push(P(0, a));

        vector <bool> visited(n, false);
        visited[a] = true;

        vector <int> cost(n, 1e9);
        cost[a] = 0;

        while (q.size()) {
            P cur = q.top();
            q.pop();

            int now = cur.second;
            int c = cur.first;

            if (cost[now] < c) continue;
            for (int node : edges[now]) {
                visited[node] = true;
                if (cost[node] > c + 1) {
                    cost[node] = c + 1;
                    q.push(P(c+1, node));
                }
            }
        }

        int cnt = -1;
        for (bool v : visited) if (v) cnt++;

        int depth = 0;
        for (int c : cost) if (c < 1e9) depth = max(depth, c);

        int ret = 0;
        while ((1 << ret) < depth) {
            ret++;
        }

        cout << cnt << " " << ret << "\n";
    }

    return 0;
}
0