結果

問題 No.812 Change of Class
ユーザー MisterMister
提出日時 2020-08-01 22:38:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 4,000 ms
コード長 2,194 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 88,680 KB
実行使用メモリ 11,188 KB
最終ジャッジ日時 2024-07-08 09:54:36
合計ジャッジ時間 7,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
7,808 KB
testcase_01 AC 16 ms
5,376 KB
testcase_02 AC 51 ms
5,760 KB
testcase_03 AC 107 ms
8,704 KB
testcase_04 AC 95 ms
8,064 KB
testcase_05 AC 212 ms
9,648 KB
testcase_06 AC 176 ms
8,832 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 196 ms
10,112 KB
testcase_10 AC 190 ms
10,092 KB
testcase_11 AC 13 ms
6,688 KB
testcase_12 AC 109 ms
9,128 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 130 ms
7,680 KB
testcase_16 AC 9 ms
5,376 KB
testcase_17 AC 116 ms
8,036 KB
testcase_18 AC 86 ms
6,784 KB
testcase_19 AC 100 ms
7,296 KB
testcase_20 AC 194 ms
9,884 KB
testcase_21 AC 81 ms
6,528 KB
testcase_22 AC 36 ms
5,376 KB
testcase_23 AC 7 ms
5,376 KB
testcase_24 AC 11 ms
5,376 KB
testcase_25 AC 29 ms
5,376 KB
testcase_26 AC 161 ms
8,832 KB
testcase_27 AC 139 ms
8,020 KB
testcase_28 AC 92 ms
7,296 KB
testcase_29 AC 21 ms
5,376 KB
testcase_30 AC 127 ms
7,808 KB
testcase_31 AC 110 ms
7,040 KB
testcase_32 AC 47 ms
5,376 KB
testcase_33 AC 126 ms
8,492 KB
testcase_34 AC 10 ms
5,376 KB
testcase_35 AC 25 ms
5,376 KB
testcase_36 AC 12 ms
5,376 KB
testcase_37 AC 67 ms
5,504 KB
testcase_38 AC 6 ms
5,376 KB
testcase_39 AC 70 ms
5,632 KB
testcase_40 AC 15 ms
5,376 KB
testcase_41 AC 6 ms
5,376 KB
testcase_42 AC 150 ms
7,688 KB
testcase_43 AC 21 ms
6,272 KB
testcase_44 AC 98 ms
6,528 KB
testcase_45 AC 11 ms
5,376 KB
testcase_46 AC 19 ms
6,144 KB
testcase_47 AC 95 ms
6,528 KB
testcase_48 AC 100 ms
7,168 KB
testcase_49 AC 28 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 24 ms
5,376 KB
testcase_52 AC 50 ms
6,784 KB
testcase_53 AC 18 ms
5,376 KB
testcase_54 AC 15 ms
5,376 KB
testcase_55 AC 71 ms
8,764 KB
testcase_56 AC 87 ms
9,704 KB
testcase_57 AC 92 ms
10,360 KB
testcase_58 AC 47 ms
6,852 KB
testcase_59 AC 107 ms
11,188 KB
testcase_60 AC 1 ms
5,376 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template <class Cost = int>
struct Edge {
    int src, dst;
    Cost cost;
    Edge(int src = -1, int dst = -1, Cost cost = 1)
        : src(src), dst(dst), cost(cost){};

    bool operator<(const Edge<Cost>& e) const { return this->cost < e.cost; }
    bool operator>(const Edge<Cost>& e) const { return this->cost > e.cost; }
};

template <class Cost = int>
struct Graph {
    std::vector<std::vector<Edge<Cost>>> graph;

    Graph(int n = 0) : graph(n) {}

    void span(bool direct, int src, int dst, Cost cost = 1) {
        graph[src].emplace_back(src, dst, cost);
        if (!direct) graph[dst].emplace_back(dst, src, cost);
    }

    int size() const { return graph.size(); }
    void clear() { graph.clear(); }
    void resize(int n) { graph.resize(n); }

    std::vector<Edge<Cost>>& operator[](int v) { return graph[v]; }
    std::vector<Edge<Cost>> operator[](int v) const { return graph[v]; }
};

template <class Cost>
std::vector<int> bfs(const Graph<Cost>& graph, int s) {
    std::vector<Cost> dist(graph.size(), -1);
    dist[s] = 0;
    std::queue<int> que;
    que.push(s);

    while (!que.empty()) {
        int v = que.front();
        que.pop();

        for (const auto& e : graph[v]) {
            if (dist[e.dst] != -1) continue;
            dist[e.dst] = dist[v] + e.cost;
            que.push(e.dst);
        }
    }

    return dist;
}

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

    Graph<> graph(n);
    while (m--) {
        int u, v;
        std::cin >> u >> v;
        graph.span(false, --u, --v);
    }

    int q;
    std::cin >> q;
    while (q--) {
        int r;
        std::cin >> r;
        --r;

        auto ds = bfs(graph, r);

        int num = std::count_if(ds.begin(), ds.end(),
                                [](auto x) { return x != -1; }) -
                  1;
        int dmax = *std::max_element(ds.begin(), ds.end());

        int day = 0;
        while (dmax > (1 << day)) ++day;

        std::cout << num << " " << day << "\n";
    }
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0