結果

問題 No.812 Change of Class
ユーザー sykwersykwer
提出日時 2019-04-12 22:10:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 218 ms / 4,000 ms
コード長 2,814 bytes
コンパイル時間 1,374 ms
コンパイル使用メモリ 122,812 KB
実行使用メモリ 12,756 KB
最終ジャッジ日時 2024-06-12 18:35:47
合計ジャッジ時間 7,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
10,240 KB
testcase_01 AC 14 ms
6,944 KB
testcase_02 AC 47 ms
7,052 KB
testcase_03 AC 100 ms
11,392 KB
testcase_04 AC 87 ms
10,496 KB
testcase_05 AC 218 ms
11,580 KB
testcase_06 AC 196 ms
10,008 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 207 ms
12,552 KB
testcase_10 AC 215 ms
12,548 KB
testcase_11 AC 20 ms
9,792 KB
testcase_12 AC 138 ms
11,880 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 133 ms
9,384 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 126 ms
9,808 KB
testcase_18 AC 95 ms
8,136 KB
testcase_19 AC 108 ms
8,808 KB
testcase_20 AC 199 ms
12,232 KB
testcase_21 AC 91 ms
7,940 KB
testcase_22 AC 41 ms
6,940 KB
testcase_23 AC 8 ms
6,940 KB
testcase_24 AC 11 ms
6,940 KB
testcase_25 AC 32 ms
6,940 KB
testcase_26 AC 167 ms
10,928 KB
testcase_27 AC 147 ms
9,944 KB
testcase_28 AC 108 ms
8,832 KB
testcase_29 AC 23 ms
6,944 KB
testcase_30 AC 135 ms
9,680 KB
testcase_31 AC 114 ms
8,464 KB
testcase_32 AC 51 ms
6,940 KB
testcase_33 AC 140 ms
10,524 KB
testcase_34 AC 11 ms
6,944 KB
testcase_35 AC 25 ms
6,940 KB
testcase_36 AC 10 ms
6,944 KB
testcase_37 AC 63 ms
6,944 KB
testcase_38 AC 8 ms
6,940 KB
testcase_39 AC 64 ms
6,944 KB
testcase_40 AC 16 ms
6,940 KB
testcase_41 AC 6 ms
6,944 KB
testcase_42 AC 136 ms
9,332 KB
testcase_43 AC 36 ms
8,132 KB
testcase_44 AC 93 ms
7,552 KB
testcase_45 AC 11 ms
6,940 KB
testcase_46 AC 34 ms
8,008 KB
testcase_47 AC 90 ms
7,696 KB
testcase_48 AC 99 ms
8,860 KB
testcase_49 AC 26 ms
6,940 KB
testcase_50 AC 3 ms
6,940 KB
testcase_51 AC 28 ms
6,940 KB
testcase_52 AC 60 ms
8,324 KB
testcase_53 AC 17 ms
6,944 KB
testcase_54 AC 14 ms
6,944 KB
testcase_55 AC 76 ms
10,012 KB
testcase_56 AC 88 ms
11,216 KB
testcase_57 AC 93 ms
11,812 KB
testcase_58 AC 49 ms
7,692 KB
testcase_59 AC 104 ms
12,756 KB
testcase_60 AC 1 ms
6,940 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* ---------- STL Libraries ---------- */
// IO library
#include <cstdio>
#include <fstream>
#include <iomanip>
#include <ios>
#include <iostream>

// algorithm library
#include <algorithm>
#include <cmath>
#include <numeric>
#include <random>
#include <cstring>

// container library
#include <array>
#include <bitset>
#include <deque>
#include <map>
#include <unordered_map>
#include <queue>
#include <set>
#include <string>
#include <tuple>
#include <vector>
#include <stack>

/* ---------- Namespace ---------- */
using namespace std;

/* ---------- Type ---------- */
using ll = long long;
#define int ll
#define P pair<ll, ll>

/* ---------- Constants  */
const double PI = 3.141592653589793238462643383279;
const ll MOD = 1e9 + 7;
const int INF = 1LL << 55;

class UnionFind {
public:
    vector<int> par, rank;
    vector<int> forest_size;
    int forest_cnt;
    int N;

    UnionFind(int n) : forest_cnt(n), N(N) {
        par = vector<int>(n);
        iota(par.begin(), par.end(), 0);
        rank = vector<int>(n, 0);
        forest_size.resize(n, 1);
    }

    int root(int x) {
        if (par[x] == x) {
            return x;
        } else {
            return par[x] = root(par[x]);
        }
    }

    void unite(int x, int y) {
        x = root(x);
        y = root(y);
        if (x == y) return;

        int fsz = forest_size[x] + forest_size[y];
        if (rank[x] < rank[y]) {
            par[x] = y;
            forest_size[y] = fsz;
        } else {
            par[y] = x;
            forest_size[x] = fsz;
            if (rank[x] == rank[y]) rank[x]++;
        }
        forest_cnt--;
    }

    bool same(int x, int y) {
        return root(x) == root(y);
    }

    int get_forest_size(int x) {
        return forest_size[root(x)];
    }
};

signed main() {
    int N, M;
    cin >> N >> M;
    vector<int> table[N];
    UnionFind uf = UnionFind(N);

    for (int i = 0; i < M; i++) {
        int s, t;
        cin >> s >> t;
        s--; t--;
        table[s].push_back(t);
        table[t].push_back(s);
        uf.unite(s, t);
    }

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

        vector<bool> visited(N, false);
        visited[a] = true;
        queue<int> que;
        que.push(a);
        int dis = 0;
        vector<int> dis_v(N, 0);
        while (!que.empty()) {
            int node = que.front(); que.pop();
            for (int next : table[node]) {
                if (visited[next]) continue;
                dis = max(dis, dis_v[node] + 1);
                dis_v[next] = dis_v[node] + 1;
                que.push(next);
                visited[next] = true;
            }
        }

        cout << uf.get_forest_size(a) - 1 << " " << max(0LL, (int) ceil(log2(dis))) << endl;
    }

    return 0;
}
0