結果

問題 No.812 Change of Class
ユーザー iqueue02iqueue02
提出日時 2020-01-08 16:26:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 179 ms / 4,000 ms
コード長 1,686 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 178,336 KB
実行使用メモリ 9,768 KB
最終ジャッジ日時 2024-06-12 21:42:22
合計ジャッジ時間 7,290 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
8,192 KB
testcase_01 AC 14 ms
6,940 KB
testcase_02 AC 43 ms
6,940 KB
testcase_03 AC 92 ms
9,032 KB
testcase_04 AC 81 ms
8,364 KB
testcase_05 AC 179 ms
8,484 KB
testcase_06 AC 158 ms
7,296 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 169 ms
9,244 KB
testcase_10 AC 168 ms
9,216 KB
testcase_11 AC 17 ms
7,172 KB
testcase_12 AC 112 ms
8,936 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 115 ms
7,152 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 110 ms
7,428 KB
testcase_18 AC 83 ms
6,940 KB
testcase_19 AC 94 ms
6,940 KB
testcase_20 AC 171 ms
9,088 KB
testcase_21 AC 80 ms
6,940 KB
testcase_22 AC 36 ms
6,944 KB
testcase_23 AC 7 ms
6,944 KB
testcase_24 AC 11 ms
6,940 KB
testcase_25 AC 30 ms
6,940 KB
testcase_26 AC 145 ms
8,104 KB
testcase_27 AC 126 ms
7,552 KB
testcase_28 AC 93 ms
6,944 KB
testcase_29 AC 22 ms
6,940 KB
testcase_30 AC 116 ms
7,348 KB
testcase_31 AC 101 ms
6,940 KB
testcase_32 AC 47 ms
6,940 KB
testcase_33 AC 123 ms
7,840 KB
testcase_34 AC 10 ms
6,940 KB
testcase_35 AC 25 ms
6,940 KB
testcase_36 AC 9 ms
6,940 KB
testcase_37 AC 56 ms
6,940 KB
testcase_38 AC 6 ms
6,944 KB
testcase_39 AC 57 ms
6,944 KB
testcase_40 AC 16 ms
6,944 KB
testcase_41 AC 5 ms
6,940 KB
testcase_42 AC 114 ms
7,296 KB
testcase_43 AC 32 ms
6,940 KB
testcase_44 AC 82 ms
6,940 KB
testcase_45 AC 11 ms
6,940 KB
testcase_46 AC 31 ms
6,940 KB
testcase_47 AC 80 ms
6,944 KB
testcase_48 AC 89 ms
6,940 KB
testcase_49 AC 23 ms
6,940 KB
testcase_50 AC 3 ms
6,940 KB
testcase_51 AC 26 ms
6,944 KB
testcase_52 AC 55 ms
6,940 KB
testcase_53 AC 16 ms
6,944 KB
testcase_54 AC 14 ms
6,944 KB
testcase_55 AC 59 ms
7,844 KB
testcase_56 AC 70 ms
8,628 KB
testcase_57 AC 74 ms
9,004 KB
testcase_58 AC 38 ms
6,940 KB
testcase_59 AC 82 ms
9,768 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef pair<int,int> P;
constexpr int INF = 1e9;
struct UnionFind{
  vector<int> data;
  int __size;
  UnionFind(int sz) {
  data.assign(sz, -1);
  __size = sz;
  }
 
  bool unite(int x, int y) {
    x = find(x), y = find(y);
    if(x == y) return (false);
    if(data[x] > data[y]) swap(x, y);//親は負でサイズを保存
    __size--;
    data[x] += data[y];
    data[y] = x;
    return (true);
  }
 
  int find(int k) {
    if(data[k] < 0) return (k);
    return (data[k] = find(data[k]));
  }

  bool same(int x, int y){
    return find(x) == find(y);
  }
 
  int size(int k) {
    return (-data[find(k)]);
  }

  int unum() {
    return (__size);
  }
};

int main(){
  int n, m;
  cin >> n >> m;
  vector<vector<int>> g(n);
  UnionFind uf(n);
  rep(i,m) {
    int u, v;
    cin >> u >> v;
    u--; v--;
    g[u].emplace_back(v);
    g[v].emplace_back(u);
    uf.unite(u, v);
  }
  
  auto bfs = [&](int s) {
    vector<int> d(n,INF);
    queue<int> que;
    que.push(s);
    d[s] = 0;
    int res = 0;
    while (!que.empty()) {
      int u = que.front(); que.pop();
      for (auto v : g[u]) {
        if (d[v] != INF) continue;
        d[v] = d[u] + 1;
        res = max(res, d[v]);
        que.push(v);
      }
    }
    return res;
  };
  int q;
  cin >> q;
  while (q--) {
    int a;
    cin >> a;
    a--;
    if (uf.size(a) == 1) {
      cout << 0 << " " << 0 << endl;
    } else { 
      int h = bfs(a);
      int d = 0;
      while ( (1 << d) < h) d++;
      cout << uf.size(a) - 1 << " " << d << endl;
    }
  }
  return 0;
}
0