結果

問題 No.812 Change of Class
ユーザー pekempeypekempey
提出日時 2019-04-14 17:40:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 189 ms / 4,000 ms
コード長 810 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 84,916 KB
実行使用メモリ 9,408 KB
最終ジャッジ日時 2024-06-12 20:46:34
合計ジャッジ時間 6,602 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
7,936 KB
testcase_01 AC 13 ms
6,940 KB
testcase_02 AC 43 ms
6,940 KB
testcase_03 AC 89 ms
8,668 KB
testcase_04 AC 81 ms
8,064 KB
testcase_05 AC 189 ms
8,148 KB
testcase_06 AC 162 ms
7,040 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 170 ms
8,856 KB
testcase_10 AC 173 ms
8,976 KB
testcase_11 AC 16 ms
6,944 KB
testcase_12 AC 113 ms
8,508 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 115 ms
6,940 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 110 ms
7,168 KB
testcase_18 AC 82 ms
6,940 KB
testcase_19 AC 95 ms
6,944 KB
testcase_20 AC 176 ms
8,676 KB
testcase_21 AC 80 ms
6,940 KB
testcase_22 AC 35 ms
6,944 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 10 ms
6,940 KB
testcase_25 AC 29 ms
6,944 KB
testcase_26 AC 149 ms
7,936 KB
testcase_27 AC 129 ms
7,252 KB
testcase_28 AC 93 ms
6,944 KB
testcase_29 AC 20 ms
6,944 KB
testcase_30 AC 118 ms
7,204 KB
testcase_31 AC 100 ms
6,940 KB
testcase_32 AC 45 ms
6,940 KB
testcase_33 AC 125 ms
7,552 KB
testcase_34 AC 10 ms
6,940 KB
testcase_35 AC 23 ms
6,940 KB
testcase_36 AC 10 ms
6,944 KB
testcase_37 AC 54 ms
6,940 KB
testcase_38 AC 6 ms
6,944 KB
testcase_39 AC 57 ms
6,944 KB
testcase_40 AC 15 ms
6,940 KB
testcase_41 AC 5 ms
6,940 KB
testcase_42 AC 117 ms
7,084 KB
testcase_43 AC 32 ms
6,940 KB
testcase_44 AC 79 ms
6,940 KB
testcase_45 AC 10 ms
6,944 KB
testcase_46 AC 30 ms
6,944 KB
testcase_47 AC 79 ms
6,944 KB
testcase_48 AC 88 ms
6,944 KB
testcase_49 AC 23 ms
6,940 KB
testcase_50 AC 3 ms
6,944 KB
testcase_51 AC 26 ms
6,940 KB
testcase_52 AC 53 ms
6,940 KB
testcase_53 AC 16 ms
6,940 KB
testcase_54 AC 13 ms
6,944 KB
testcase_55 AC 57 ms
7,592 KB
testcase_56 AC 66 ms
8,328 KB
testcase_57 AC 71 ms
8,804 KB
testcase_58 AC 37 ms
6,944 KB
testcase_59 AC 82 ms
9,408 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <map>
#include <queue>

using namespace std;

int main() {
  int N, M;
  cin >> N >> M;
  vector<vector<int>> G(N);
  for (int i = 0; i < M; i++) {
    int u, v;
    cin >> u >> v;
    u--; v--;
    G[u].push_back(v);
    G[v].push_back(u);
  }
  int Q;
  cin >> Q;
  while (Q--) {
    int A;
    cin >> A;
    A--;
    vector<int> d(N, -1);
    d[A] = 0;
    queue<int> q;
    q.push(A);
    int c = 0;
    int m = 0;
    while (!q.empty()) {
      int u = q.front(); q.pop();
      c++;
      m = max(m, d[u]);
      for (int v : G[u]) if (d[v] == -1) {
        d[v] = d[u] + 1;
        q.push(v);
      }
    }
    int k = 1;
    int ans = 0;
    while (k < m) k *= 2, ans++;
    cout << c-1 << ' ' << ans << '\n';
  }
}
0