結果

問題 No.812 Change of Class
ユーザー 0w10w1
提出日時 2020-11-16 15:17:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 888 ms / 4,000 ms
コード長 1,291 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 214,524 KB
実行使用メモリ 14,032 KB
最終ジャッジ日時 2024-07-23 01:32:27
合計ジャッジ時間 21,245 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
8,156 KB
testcase_01 AC 21 ms
6,944 KB
testcase_02 AC 71 ms
6,944 KB
testcase_03 AC 154 ms
9,056 KB
testcase_04 AC 135 ms
8,440 KB
testcase_05 AC 888 ms
9,868 KB
testcase_06 AC 670 ms
9,444 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 776 ms
10,424 KB
testcase_10 AC 801 ms
10,444 KB
testcase_11 AC 13 ms
7,196 KB
testcase_12 AC 434 ms
9,412 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 497 ms
8,132 KB
testcase_16 AC 26 ms
6,944 KB
testcase_17 AC 438 ms
8,128 KB
testcase_18 AC 313 ms
7,124 KB
testcase_19 AC 371 ms
7,656 KB
testcase_20 AC 855 ms
10,208 KB
testcase_21 AC 297 ms
6,980 KB
testcase_22 AC 120 ms
6,944 KB
testcase_23 AC 20 ms
6,940 KB
testcase_24 AC 32 ms
6,940 KB
testcase_25 AC 95 ms
6,944 KB
testcase_26 AC 669 ms
9,000 KB
testcase_27 AC 555 ms
8,572 KB
testcase_28 AC 351 ms
7,508 KB
testcase_29 AC 73 ms
6,940 KB
testcase_30 AC 501 ms
8,300 KB
testcase_31 AC 396 ms
7,356 KB
testcase_32 AC 147 ms
6,940 KB
testcase_33 AC 518 ms
8,796 KB
testcase_34 AC 29 ms
6,944 KB
testcase_35 AC 74 ms
6,940 KB
testcase_36 AC 36 ms
6,940 KB
testcase_37 AC 209 ms
6,944 KB
testcase_38 AC 6 ms
6,944 KB
testcase_39 AC 224 ms
6,940 KB
testcase_40 AC 47 ms
6,940 KB
testcase_41 AC 5 ms
6,944 KB
testcase_42 AC 546 ms
7,832 KB
testcase_43 AC 39 ms
6,944 KB
testcase_44 AC 357 ms
6,940 KB
testcase_45 AC 36 ms
6,940 KB
testcase_46 AC 32 ms
6,944 KB
testcase_47 AC 334 ms
6,944 KB
testcase_48 AC 334 ms
7,284 KB
testcase_49 AC 93 ms
6,940 KB
testcase_50 AC 6 ms
6,940 KB
testcase_51 AC 74 ms
6,944 KB
testcase_52 AC 136 ms
6,940 KB
testcase_53 AC 60 ms
6,940 KB
testcase_54 AC 54 ms
6,944 KB
testcase_55 AC 470 ms
10,924 KB
testcase_56 AC 575 ms
12,216 KB
testcase_57 AC 612 ms
12,592 KB
testcase_58 AC 281 ms
8,276 KB
testcase_59 AC 726 ms
14,032 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<typename T, T INF>
vector<T> dijkstra(const vector<vector<pair<int, int>>> &g, int st = 0) {
  const int n = g.size();
  vector<T> dis(n, INF); {
    set<pair<T, int>> bag;
    bag.emplace(dis[st] = 0, st);
    while (bag.size()) {
      auto [d, u] = *bag.begin();
      bag.erase(bag.begin());
      if (d != dis[u]) continue;
      for (auto [w, v] : g[u]) {
        if (d + w < dis[v]) {
          bag.emplace(dis[v] = d + w, v);
        }
      }
    }
  }
  return dis;
}

int main() {
  ios::sync_with_stdio(false);

  int N, M; {
    cin >> N >> M;
  }

  vector<vector<pair<int, int>>> G(N); {
    for (int i = 0; i < M; ++i) {
      int U, V; {
        cin >> U >> V;
        --U, --V;
      }
      G[U].emplace_back(1, V);
      G[V].emplace_back(1, U);
    }
  }

  int Q; { cin >> Q; }

  while (Q--) {
    int A; {
      cin >> A;
      --A;
    }

    int cnt = 0;
    int maxd = 0; {
      const int INF = 0x3f3f3f3f;
      auto dis = dijkstra<int, INF>(G, A);
      for (int u = 0; u < N; ++u) if (u != A) {
        if (dis[u] == INF) continue;
        ++cnt;
        maxd = max(maxd, dis[u]);
      }
    }

    auto f = [](int d) { return d ? ceil(log2(d)) : 0; };

    cout << cnt << ' ' << f(maxd) << endl;
  }
}
0