結果

問題 No.812 Change of Class
ユーザー TiramisterTiramister
提出日時 2019-04-12 23:14:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 398 ms / 4,000 ms
コード長 2,889 bytes
コンパイル時間 1,036 ms
コンパイル使用メモリ 89,660 KB
実行使用メモリ 12,172 KB
最終ジャッジ日時 2024-06-12 19:54:49
合計ジャッジ時間 10,738 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
8,500 KB
testcase_01 AC 13 ms
6,944 KB
testcase_02 AC 43 ms
6,940 KB
testcase_03 AC 93 ms
9,416 KB
testcase_04 AC 81 ms
8,704 KB
testcase_05 AC 398 ms
10,552 KB
testcase_06 AC 327 ms
9,744 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 354 ms
11,184 KB
testcase_10 AC 366 ms
11,056 KB
testcase_11 AC 17 ms
7,580 KB
testcase_12 AC 219 ms
10,276 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 259 ms
8,192 KB
testcase_16 AC 15 ms
6,940 KB
testcase_17 AC 231 ms
8,704 KB
testcase_18 AC 170 ms
7,168 KB
testcase_19 AC 199 ms
8,064 KB
testcase_20 AC 384 ms
10,760 KB
testcase_21 AC 165 ms
7,040 KB
testcase_22 AC 73 ms
6,940 KB
testcase_23 AC 12 ms
6,940 KB
testcase_24 AC 21 ms
6,940 KB
testcase_25 AC 63 ms
6,940 KB
testcase_26 AC 352 ms
9,640 KB
testcase_27 AC 300 ms
8,832 KB
testcase_28 AC 210 ms
7,892 KB
testcase_29 AC 50 ms
6,940 KB
testcase_30 AC 271 ms
8,576 KB
testcase_31 AC 215 ms
7,708 KB
testcase_32 AC 92 ms
6,940 KB
testcase_33 AC 260 ms
9,284 KB
testcase_34 AC 18 ms
6,940 KB
testcase_35 AC 45 ms
6,944 KB
testcase_36 AC 21 ms
6,944 KB
testcase_37 AC 126 ms
6,940 KB
testcase_38 AC 7 ms
6,940 KB
testcase_39 AC 133 ms
6,944 KB
testcase_40 AC 30 ms
6,940 KB
testcase_41 AC 6 ms
6,944 KB
testcase_42 AC 297 ms
8,212 KB
testcase_43 AC 35 ms
6,944 KB
testcase_44 AC 190 ms
6,944 KB
testcase_45 AC 22 ms
6,940 KB
testcase_46 AC 32 ms
6,944 KB
testcase_47 AC 189 ms
6,940 KB
testcase_48 AC 183 ms
7,680 KB
testcase_49 AC 57 ms
6,944 KB
testcase_50 AC 4 ms
6,940 KB
testcase_51 AC 46 ms
6,940 KB
testcase_52 AC 88 ms
7,040 KB
testcase_53 AC 36 ms
6,940 KB
testcase_54 AC 32 ms
6,940 KB
testcase_55 AC 185 ms
9,272 KB
testcase_56 AC 222 ms
10,792 KB
testcase_57 AC 238 ms
11,192 KB
testcase_58 AC 122 ms
7,416 KB
testcase_59 AC 272 ms
12,172 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <numeric>
#include <vector>
#include <queue>
#include <tuple>
#include <limits>

template <class Cost = int>
struct Edge {
    int from, to;
    Cost cost;
    Edge(int from = -1, int to = -1, Cost cost = 1)
        : from(from), to(to), 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>
class Graph {
public:
    int size;
    std::vector<std::vector<Edge<Cost>>> path;

    explicit Graph(int N = 0) : size(N), path(size) {}
    void span(int from, int to, Cost cost = 1) {
        path[from].push_back(Edge<Cost>(from, to, cost));
    }
    std::vector<Edge<Cost>>& operator[](int v) { return path[v]; }
};

const int INF = std::numeric_limits<int>::max() / 3;

class UnionFind {
private:
    std::vector<int> par, num;

    int find(int v) {
        return (par[v] == v) ? v : (par[v] = find(par[v]));
    }

public:
    explicit UnionFind(int N) : par(N), num(N, 1) {
        std::iota(par.begin(), par.end(), 0);
    }

    void unite(int u, int v) {
        u = find(u), v = find(v);
        if (u == v) return;

        if (num[u] < num[v]) std::swap(u, v);
        num[u] += num[v];
        par[v] = u;
    }

    bool same(int u, int v) { return find(u) == find(v); }
    bool ispar(int v) { return v == find(v); }
    int size(int v) { return num[find(v)]; }
};

template <class Cost>
std::vector<Cost> dijkstra(Graph<Cost>& graph, std::vector<int> ss) {
    std::vector<Cost> dist(graph.size, INF);
    std::priority_queue<std::pair<int, Cost>, std::vector<std::pair<int, Cost>>, std::greater<std::pair<int, Cost>>> que;

    for (auto s : ss) {
        dist[s] = 0;
        que.emplace(0, s);
    }

    while (!que.empty()) {
        int v;
        Cost d;
        std::tie(d, v) = que.top();
        que.pop();
        if (d > dist[v]) continue;

        for (auto e : graph[v]) {
            if (dist[e.to] <= dist[v] + e.cost) continue;
            dist[e.to] = dist[v] + e.cost;
            que.emplace(dist[e.to], e.to);
        }
    }
    return dist;
}

int main() {
    int N, M;
    std::cin >> N >> M;

    Graph<> graph(N);
    UnionFind uf(N);
    for (int i = 0; i < M; ++i) {
        int p, q;
        std::cin >> p >> q;
        --p, --q;

        graph.span(p, q);
        graph.span(q, p);
        uf.unite(p, q);
    }

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

        std::cout << uf.size(a) - 1 << " ";
        auto dist = dijkstra<>(graph, {a});

        int max = 1;
        for (auto d : dist) {
            if (0 < d && d < INF) max = std::max(max, d);
        }

        int day;
        for (day = 0; (1 << day) < max; ++day) {}

        std::cout << day << std::endl;
    }
    return 0;
}
0