結果

問題 No.812 Change of Class
ユーザー kyort0nkyort0n
提出日時 2019-04-12 21:35:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 259 ms / 4,000 ms
コード長 2,284 bytes
コンパイル時間 2,008 ms
コンパイル使用メモリ 177,068 KB
実行使用メモリ 11,164 KB
最終ジャッジ日時 2024-06-12 06:39:09
合計ジャッジ時間 8,431 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
9,984 KB
testcase_01 AC 16 ms
7,516 KB
testcase_02 AC 45 ms
8,704 KB
testcase_03 AC 95 ms
10,568 KB
testcase_04 AC 83 ms
10,012 KB
testcase_05 AC 259 ms
10,112 KB
testcase_06 AC 251 ms
9,728 KB
testcase_07 AC 5 ms
7,296 KB
testcase_08 AC 5 ms
7,168 KB
testcase_09 AC 229 ms
10,496 KB
testcase_10 AC 237 ms
10,368 KB
testcase_11 AC 18 ms
8,264 KB
testcase_12 AC 143 ms
10,112 KB
testcase_13 AC 5 ms
7,168 KB
testcase_14 AC 5 ms
7,236 KB
testcase_15 AC 155 ms
9,216 KB
testcase_16 AC 14 ms
7,424 KB
testcase_17 AC 150 ms
9,512 KB
testcase_18 AC 111 ms
8,944 KB
testcase_19 AC 126 ms
9,088 KB
testcase_20 AC 243 ms
10,368 KB
testcase_21 AC 104 ms
8,704 KB
testcase_22 AC 48 ms
7,936 KB
testcase_23 AC 12 ms
7,424 KB
testcase_24 AC 16 ms
7,552 KB
testcase_25 AC 39 ms
7,936 KB
testcase_26 AC 200 ms
9,984 KB
testcase_27 AC 176 ms
9,472 KB
testcase_28 AC 125 ms
9,088 KB
testcase_29 AC 29 ms
7,528 KB
testcase_30 AC 160 ms
9,472 KB
testcase_31 AC 136 ms
9,032 KB
testcase_32 AC 60 ms
8,064 KB
testcase_33 AC 170 ms
9,856 KB
testcase_34 AC 16 ms
7,296 KB
testcase_35 AC 28 ms
7,808 KB
testcase_36 AC 14 ms
7,552 KB
testcase_37 AC 63 ms
8,320 KB
testcase_38 AC 9 ms
7,648 KB
testcase_39 AC 65 ms
8,320 KB
testcase_40 AC 20 ms
7,552 KB
testcase_41 AC 7 ms
7,512 KB
testcase_42 AC 134 ms
9,344 KB
testcase_43 AC 40 ms
8,704 KB
testcase_44 AC 91 ms
8,960 KB
testcase_45 AC 13 ms
7,368 KB
testcase_46 AC 37 ms
8,704 KB
testcase_47 AC 89 ms
8,960 KB
testcase_48 AC 109 ms
9,088 KB
testcase_49 AC 28 ms
7,680 KB
testcase_50 AC 6 ms
7,296 KB
testcase_51 AC 31 ms
7,936 KB
testcase_52 AC 63 ms
8,832 KB
testcase_53 AC 20 ms
7,552 KB
testcase_54 AC 16 ms
7,424 KB
testcase_55 AC 56 ms
10,112 KB
testcase_56 AC 62 ms
10,536 KB
testcase_57 AC 65 ms
10,664 KB
testcase_58 AC 36 ms
8,960 KB
testcase_59 AC 73 ms
11,164 KB
testcase_60 AC 5 ms
7,168 KB
testcase_61 AC 5 ms
7,264 KB
testcase_62 AC 5 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> l_l;

#define EPS (1e-7)
#define INF (1e9)
#define PI (acos(-1))
//const ll mod = 1000000007;
struct UnionFind {
    vector<int> par;
    vector<int> rank;
    vector<ll> Size;
    UnionFind(int n = 1) {
        init(n);
    }

    void init(int n = 1) {
        par.resize(n + 1); rank.resize(n + 1); Size.resize(n + 1);
        for (int i = 0; i <= n; ++i) par[i] = i, rank[i] = 0, Size[i] = 1;
    }

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

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

    bool merge(int x, int y) {
        x = root(x); y = root(y);
        if (x == y) return false;
        if (rank[x] < rank[y]) swap(x, y);
        if (rank[x] == rank[y]) ++rank[x];
        par[y] = x;
        Size[x] += Size[y];
        return true;
    }

    ll size(int x){
        return Size[root(x)];
    }
};
vector<int> pathes[100500];

int dist[100050];

int main() {
    //cout.precision(10);
    //cin.tie(0);
    //ios::sync_with_stdio(false);
    UnionFind uni(100050);
    int N, M;
    cin >> N >> M;
    for(int i = 1; i <= M; i++) {
        int a, b;
        cin >> a >> b;
        uni.merge(a, b);
        pathes[a].push_back(b);
        pathes[b].push_back(a);
    }
    int Q;
    cin >> Q;
    while(Q--) {
        int A;
        cin >> A;
        for(int i = 1; i <= N; i++) dist[i] = INF;
        dist[A] = 0;
        queue<int> search;
        search.push(A);
        int maxi = 0;
        while(!search.empty()) {
            int from = search.front();
            maxi = max(maxi, dist[from]);
            search.pop();
            for(int i = 0; i < pathes[from].size(); i++) {
                int to = pathes[from][i];
                if(dist[to] <= dist[from]) continue;
                dist[to] = dist[from] + 1;
                search.push(to);
            }
        }
        int day = 0;
        //cerr << maxi << endl;
        while(maxi >= 2) {
            maxi = (maxi + 1) / 2;
            day++;
        }
        cout << uni.size(A) - 1 << " ";
        cout << day << endl;
    }
    return 0;
}
0