結果

問題 No.812 Change of Class
ユーザー kk
提出日時 2020-09-02 20:55:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 4,000 ms
コード長 1,149 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 207,772 KB
実行使用メモリ 9,616 KB
最終ジャッジ日時 2024-11-21 20:27:40
合計ジャッジ時間 7,372 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
8,576 KB
testcase_01 AC 10 ms
6,400 KB
testcase_02 AC 26 ms
7,424 KB
testcase_03 AC 49 ms
8,960 KB
testcase_04 AC 45 ms
8,704 KB
testcase_05 AC 126 ms
8,704 KB
testcase_06 AC 107 ms
8,292 KB
testcase_07 AC 4 ms
6,016 KB
testcase_08 AC 4 ms
5,888 KB
testcase_09 AC 112 ms
9,088 KB
testcase_10 AC 118 ms
9,088 KB
testcase_11 AC 10 ms
7,040 KB
testcase_12 AC 72 ms
8,704 KB
testcase_13 AC 4 ms
5,888 KB
testcase_14 AC 4 ms
5,888 KB
testcase_15 AC 79 ms
7,936 KB
testcase_16 AC 7 ms
6,144 KB
testcase_17 AC 73 ms
8,064 KB
testcase_18 AC 55 ms
7,496 KB
testcase_19 AC 61 ms
7,808 KB
testcase_20 AC 115 ms
8,960 KB
testcase_21 AC 54 ms
7,384 KB
testcase_22 AC 25 ms
6,656 KB
testcase_23 AC 7 ms
6,016 KB
testcase_24 AC 8 ms
6,016 KB
testcase_25 AC 20 ms
6,400 KB
testcase_26 AC 93 ms
8,448 KB
testcase_27 AC 86 ms
8,192 KB
testcase_28 AC 60 ms
7,936 KB
testcase_29 AC 16 ms
6,400 KB
testcase_30 AC 77 ms
8,064 KB
testcase_31 AC 66 ms
7,808 KB
testcase_32 AC 31 ms
6,820 KB
testcase_33 AC 79 ms
8,192 KB
testcase_34 AC 8 ms
6,016 KB
testcase_35 AC 15 ms
6,400 KB
testcase_36 AC 8 ms
6,016 KB
testcase_37 AC 38 ms
7,040 KB
testcase_38 AC 6 ms
6,272 KB
testcase_39 AC 39 ms
7,040 KB
testcase_40 AC 11 ms
6,400 KB
testcase_41 AC 5 ms
6,144 KB
testcase_42 AC 74 ms
8,140 KB
testcase_43 AC 16 ms
7,296 KB
testcase_44 AC 53 ms
7,424 KB
testcase_45 AC 8 ms
6,016 KB
testcase_46 AC 15 ms
7,296 KB
testcase_47 AC 51 ms
7,552 KB
testcase_48 AC 59 ms
7,628 KB
testcase_49 AC 17 ms
6,528 KB
testcase_50 AC 3 ms
5,888 KB
testcase_51 AC 18 ms
6,656 KB
testcase_52 AC 34 ms
7,552 KB
testcase_53 AC 12 ms
6,272 KB
testcase_54 AC 11 ms
6,272 KB
testcase_55 AC 31 ms
8,448 KB
testcase_56 AC 35 ms
8,908 KB
testcase_57 AC 38 ms
9,108 KB
testcase_58 AC 20 ms
7,680 KB
testcase_59 AC 39 ms
9,616 KB
testcase_60 AC 4 ms
5,888 KB
testcase_61 AC 3 ms
5,888 KB
testcase_62 AC 3 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

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

const double PI = acos(-1);

const int INF = 1<<28;
int n, m;
vector<int> edges[100000];
int dist[100000];

int ceil_log(int x) {
  int r = log2(x);
  if (1<<r < x)
    ++r;
  return r;
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  cin >> n >> m;
  REP (i, m) {
    int p, q;
    cin >> p >> q;
    --p, --q;
    edges[p].push_back(q);
    edges[q].push_back(p);
  }

  int q;
  cin >> q;
  while (q--) {
    int v;
    cin >> v;
    --v;
    fill(dist, dist + n, INF);

    queue<int> que;
    que.push(v);
    dist[v] = 0;
    int c = 0;
    int d = 0;
    
    while (!que.empty()) {
      int u = que.front();
      que.pop();
      ++c;
      d = max(d, dist[u]);

      for (int w: edges[u]) {
        if (dist[w] == INF) {
          dist[w] = dist[u] + 1;
          que.push(w);
        }
      }
    }

    if (!--c)
      cout << 0 << " " << 0 << endl;
    else
      cout << c << " " << ceil_log(d) << endl;
  }
  
  return 0;
}
0