結果

問題 No.812 Change of Class
ユーザー totori_nyaatotori_nyaa
提出日時 2019-04-13 17:35:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 527 ms / 4,000 ms
コード長 3,411 bytes
コンパイル時間 1,937 ms
コンパイル使用メモリ 181,944 KB
実行使用メモリ 15,144 KB
最終ジャッジ日時 2024-06-12 20:34:46
合計ジャッジ時間 12,452 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
10,496 KB
testcase_01 AC 15 ms
6,944 KB
testcase_02 AC 53 ms
7,208 KB
testcase_03 AC 111 ms
11,852 KB
testcase_04 AC 99 ms
10,932 KB
testcase_05 AC 489 ms
13,160 KB
testcase_06 AC 527 ms
13,108 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 438 ms
13,740 KB
testcase_10 AC 462 ms
13,704 KB
testcase_11 AC 20 ms
7,864 KB
testcase_12 AC 226 ms
12,060 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 281 ms
10,032 KB
testcase_16 AC 17 ms
6,944 KB
testcase_17 AC 261 ms
10,464 KB
testcase_18 AC 190 ms
8,728 KB
testcase_19 AC 209 ms
9,432 KB
testcase_20 AC 424 ms
13,496 KB
testcase_21 AC 169 ms
8,384 KB
testcase_22 AC 78 ms
6,940 KB
testcase_23 AC 14 ms
6,944 KB
testcase_24 AC 21 ms
6,944 KB
testcase_25 AC 61 ms
6,944 KB
testcase_26 AC 343 ms
11,568 KB
testcase_27 AC 322 ms
10,736 KB
testcase_28 AC 212 ms
9,520 KB
testcase_29 AC 46 ms
6,940 KB
testcase_30 AC 257 ms
10,196 KB
testcase_31 AC 233 ms
9,072 KB
testcase_32 AC 93 ms
6,944 KB
testcase_33 AC 277 ms
11,076 KB
testcase_34 AC 18 ms
6,940 KB
testcase_35 AC 44 ms
6,940 KB
testcase_36 AC 19 ms
6,940 KB
testcase_37 AC 110 ms
6,940 KB
testcase_38 AC 8 ms
6,940 KB
testcase_39 AC 118 ms
6,944 KB
testcase_40 AC 27 ms
6,940 KB
testcase_41 AC 7 ms
6,940 KB
testcase_42 AC 249 ms
9,576 KB
testcase_43 AC 39 ms
7,612 KB
testcase_44 AC 168 ms
7,912 KB
testcase_45 AC 20 ms
6,940 KB
testcase_46 AC 36 ms
7,476 KB
testcase_47 AC 170 ms
7,808 KB
testcase_48 AC 173 ms
8,832 KB
testcase_49 AC 50 ms
6,940 KB
testcase_50 AC 3 ms
6,944 KB
testcase_51 AC 46 ms
6,940 KB
testcase_52 AC 87 ms
7,964 KB
testcase_53 AC 33 ms
6,940 KB
testcase_54 AC 28 ms
6,940 KB
testcase_55 AC 152 ms
11,140 KB
testcase_56 AC 190 ms
13,472 KB
testcase_57 AC 202 ms
14,020 KB
testcase_58 AC 104 ms
8,992 KB
testcase_59 AC 227 ms
15,144 KB
testcase_60 AC 2 ms
6,944 KB
testcase_61 AC 1 ms
6,940 KB
testcase_62 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

class UnionFind{
    public:
    //親の番号を格納する。親だった場合は-(その集合のサイズ)
    vector<int> parent;

    //-1で初期化
    //最初はすべてバラバラ
    UnionFind(int N){
        parent = vector<int>(N,-1);
    }

    //Aがどのグループに属しているか(Aの根)を調べる
    int root(int A){
        if(parent[A] < 0) return A;
        return parent[A]=root(parent[A]);
    }

    //自分のいるグループの頂点数を調べる
    int size(int A){
        return -parent[root(A)];
    }

    //AとBをくっつける
    bool connect(int A, int B) {
    //AとBを直接つなぐのではなく、root(A)にroot(B)をくっつける
        A = root(A);
        B = root(B);
        //既にくっついているからくっつけない
        if(A == B) return false; 

        //大きいほう(A)に小さいほう(B)をくっつける
        //大小が逆ならひっくり返す
        if(size(A) < size(B)) swap(A,B);

        //Aのサイズを更新する
        parent[A] += parent[B];
        //Bの親をAに変更する
        parent[B] = A;

        return true;
    }

    //AとBが同じグループならtrueを返す
    bool same(int A, int B){
        return root(A)==root(B);
    } 
};

class Dijkstra {
public:
    struct edge { long long v, dist; };

    struct state {
        long long v, cost;
        bool operator>(const state s) const { return cost > s.cost; }
    };

    const long long INF = (1LL << 60);
    long long N;
    vector< vector<edge> > E;

    Dijkstra(long long n): N(n), E(n) {}

    //有効グラフの時はこっち。u→vに距離dで結ぶ
    void add_directed_edge(long long u, long long v, long long d) {
        E[u].push_back((edge) { v, d });
    }

    //無向グラフの時はこっち。uとvを双方向に距離dで結ぶ
    void add_undirected_edge(long long u, long long v, long long d) {
        E[u].push_back((edge) { v, d });
        E[v].push_back((edge) { u, d });
    }

    //Sを始点として、他の頂点への最短経路を探す
    vector<long long> shortest_path(long long S) {
        vector<long long> dp(E.size(), INF);
        priority_queue<state, vector<state>, greater<state> > q;
        q.push((state) { S, 0 });
        while(!q.empty()) {
            long long v = q.top().v, cost = q.top().cost;
            q.pop();
            if(dp[v] <= cost) continue;
            dp[v] = cost;
            for(int i=0;i < E[v].size() ; i++) {
            long long nv = E[v][i].v, ncost = cost + E[v][i].dist;
            if(dp[nv] > ncost) q.push((state) { nv, ncost });
            }
        }
        return dp;
    }
};


int main(){
    int n,m;
    cin>>n>>m;
    int p[m],q[m];
    UnionFind uni(n);
    Dijkstra di(n);
    for(int i=0;i<m;i++){
        cin>>p[i]>>q[i];
        p[i]--;
        q[i]--;
        uni.connect(p[i],q[i]);
        di.add_undirected_edge(p[i],q[i],1);
    }
    int Q;
    cin>>Q;
    int a;
    for(int i=0;i<Q;i++){
        cin>>a;
        a--;
        cout<<uni.size(a)-1<<" ";
        long long ans=0;
        const long long INF = (1LL << 60);
        vector<long long> v=di.shortest_path(a);
        for(int i=0;i<n;i++){
            if(v[i]!=INF) ans=max(ans,v[i]);
        }
        int t=0;
        for(;pow(2,t)<ans;t++);
        cout<<t<<endl;

    }
}
0