結果

問題 No.812 Change of Class
ユーザー 👑 emthrmemthrm
提出日時 2019-04-12 22:13:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,451 bytes
コンパイル時間 1,164 ms
コンパイル使用メモリ 127,672 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-06-12 18:40:26
合計ジャッジ時間 5,521 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
12,448 KB
testcase_01 AC 9 ms
7,108 KB
testcase_02 AC 25 ms
9,600 KB
testcase_03 AC 54 ms
13,696 KB
testcase_04 AC 48 ms
12,800 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 8 ms
7,284 KB
testcase_12 WA -
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 16 ms
6,944 KB
testcase_36 AC 7 ms
6,940 KB
testcase_37 AC 41 ms
7,312 KB
testcase_38 AC 4 ms
6,944 KB
testcase_39 AC 43 ms
7,380 KB
testcase_40 AC 11 ms
6,944 KB
testcase_41 AC 4 ms
6,944 KB
testcase_42 AC 93 ms
8,320 KB
testcase_43 AC 15 ms
7,644 KB
testcase_44 AC 65 ms
7,808 KB
testcase_45 AC 7 ms
6,940 KB
testcase_46 AC 14 ms
7,596 KB
testcase_47 AC 62 ms
7,936 KB
testcase_48 AC 68 ms
8,124 KB
testcase_49 AC 15 ms
6,944 KB
testcase_50 AC 3 ms
6,940 KB
testcase_51 AC 19 ms
6,940 KB
testcase_52 AC 36 ms
7,808 KB
testcase_53 AC 11 ms
6,940 KB
testcase_54 AC 10 ms
6,940 KB
testcase_55 AC 23 ms
8,500 KB
testcase_56 AC 26 ms
9,032 KB
testcase_57 AC 29 ms
9,056 KB
testcase_58 AC 16 ms
7,716 KB
testcase_59 AC 32 ms
9,736 KB
testcase_60 AC 2 ms
6,944 KB
testcase_61 AC 3 ms
6,940 KB
testcase_62 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <chrono>
#define _USE_MATH_DEFINES
#include <cmath>
#include <cstdio>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iostream>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <tuple>
#include <utility>
#include <vector>
using namespace std;

#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()

const int INF = 0x3f3f3f3f;
const long long LINF = 0x3f3f3f3f3f3f3f3fLL;
const double EPS = 1e-8;
const int MOD = 1000000007; // 998244353;
const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1};
/*-------------------------------------------------*/
struct UnionFind {
  UnionFind(int sz) : data(sz, -1) {}

  int root(int ver) { return data[ver] < 0 ? ver : data[ver] = root(data[ver]); }

  void unite(int ver1, int ver2) {
    ver1 = root(ver1);
    ver2 = root(ver2);
    if (ver1 != ver2) {
      if (data[ver1] > data[ver2]) swap(ver1, ver2);
      data[ver1] += data[ver2];
      data[ver2] = ver1;
    }
  }

  bool same(int ver1, int ver2) { return root(ver1) == root(ver2); }

  int size(int ver) { return -data[root(ver)]; }

private:
  vector<int> data;
};

int memo[100000];
void memo_init() {
  memo[0] = memo[1] = 0;
  int before = 2, now = 2, beki = 1;
  bool ok = true;
  while (ok) {
    FOR(i, before, now + 1) {
      if (i > 100000) {
        ok = false;
        break;
      }
      memo[i] = beki;
    }
    before = now + 1;
    now <<= 1;
    ++beki;
  }
}

int day = 0;
vector<int> edge[100000];
bool used[100000] = {};
void dfs(int ver, int cnt) {
  day = max(day, memo[cnt]);
  for (int e : edge[ver]) if (!used[e]) {
    used[e] = true;
    dfs(e, cnt + 1);
  }
}

int main() {
  cin.tie(0); ios::sync_with_stdio(false);
  // freopen("input.txt", "r", stdin);

  memo_init();
  int n, m; cin >> n >> m;
  UnionFind uf(n);
  while (m--) {
    int p, q; cin >> p >> q; --p; --q;
    uf.unite(p, q);
    edge[p].emplace_back(q);
    edge[q].emplace_back(p);
  }
  int q; cin >> q;
  while (q--) {
    int a; cin >> a; --a;
    day = 0;
    memset(used, false, sizeof(used));
    used[a] = true;
    dfs(a, 0);
    cout << uf.size(a) - 1 << ' ' << day << '\n';
  }
  return 0;
}
0