結果

問題 No.812 Change of Class
ユーザー oxyshoweroxyshower
提出日時 2020-01-15 13:56:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 716 ms / 4,000 ms
コード長 1,348 bytes
コンパイル時間 1,778 ms
コンパイル使用メモリ 180,608 KB
実行使用メモリ 20,396 KB
最終ジャッジ日時 2024-06-12 21:44:04
合計ジャッジ時間 18,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
15,024 KB
testcase_01 AC 35 ms
6,940 KB
testcase_02 AC 122 ms
10,012 KB
testcase_03 AC 268 ms
17,828 KB
testcase_04 AC 236 ms
15,488 KB
testcase_05 AC 716 ms
17,948 KB
testcase_06 AC 565 ms
16,032 KB
testcase_07 AC 10 ms
6,944 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 683 ms
18,652 KB
testcase_10 AC 714 ms
18,656 KB
testcase_11 AC 94 ms
10,380 KB
testcase_12 AC 476 ms
16,616 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 458 ms
13,196 KB
testcase_16 AC 29 ms
6,940 KB
testcase_17 AC 435 ms
14,080 KB
testcase_18 AC 315 ms
11,168 KB
testcase_19 AC 363 ms
12,456 KB
testcase_20 AC 684 ms
18,248 KB
testcase_21 AC 297 ms
10,624 KB
testcase_22 AC 125 ms
6,940 KB
testcase_23 AC 23 ms
6,944 KB
testcase_24 AC 35 ms
6,940 KB
testcase_25 AC 100 ms
6,940 KB
testcase_26 AC 561 ms
15,876 KB
testcase_27 AC 494 ms
14,336 KB
testcase_28 AC 344 ms
12,416 KB
testcase_29 AC 76 ms
6,944 KB
testcase_30 AC 443 ms
13,876 KB
testcase_31 AC 374 ms
12,012 KB
testcase_32 AC 165 ms
7,768 KB
testcase_33 AC 490 ms
15,164 KB
testcase_34 AC 33 ms
6,940 KB
testcase_35 AC 94 ms
6,940 KB
testcase_36 AC 37 ms
6,940 KB
testcase_37 AC 218 ms
8,272 KB
testcase_38 AC 30 ms
6,940 KB
testcase_39 AC 227 ms
8,400 KB
testcase_40 AC 56 ms
6,940 KB
testcase_41 AC 23 ms
6,944 KB
testcase_42 AC 470 ms
13,056 KB
testcase_43 AC 148 ms
9,984 KB
testcase_44 AC 326 ms
10,284 KB
testcase_45 AC 38 ms
6,940 KB
testcase_46 AC 136 ms
10,152 KB
testcase_47 AC 330 ms
10,368 KB
testcase_48 AC 352 ms
12,440 KB
testcase_49 AC 99 ms
6,944 KB
testcase_50 AC 7 ms
6,944 KB
testcase_51 AC 104 ms
6,940 KB
testcase_52 AC 210 ms
10,624 KB
testcase_53 AC 63 ms
6,944 KB
testcase_54 AC 58 ms
6,944 KB
testcase_55 AC 352 ms
14,824 KB
testcase_56 AC 461 ms
17,816 KB
testcase_57 AC 488 ms
18,540 KB
testcase_58 AC 266 ms
11,216 KB
testcase_59 AC 528 ms
20,396 KB
testcase_60 AC 2 ms
6,944 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#ifdef LOCAL_DEBUG
  #include "LOCAL_DEBUG.hpp"
#endif
#define int long long
const int INF = 1LL << 60;

struct edge{ int to,cost; };
vector<int> dikstra(int s,vector<vector<edge>> G){
  typedef pair<int, int> P;
  const int INF = 1LL << 60;

  priority_queue<P,vector<P>,greater<P>> que;
  vector<int> d(G.size(),INF); //sからの最短距離
  d[s] = 0;
  que.push({0,s}); //{最短距離,頂点}

  while( !que.empty() ){
    P p = que.top(); que.pop();
    int v = p.second;
    if(d[v] < p.first) continue;
    for(auto e : G[v]){
      if(d[e.to] > d[v] + e.cost){
        d[e.to] = d[v] + e.cost;
        que.push( {d[e.to],e.to} );
      }
    }
  }
  return d;
}

signed main(){

  int n, m; cin >> n >> m;
  vector<vector<edge>> G(n);
  for(int i = 0; i < m; i++){
    int s, t; cin >> s >> t;
    s--, t--;
    G[s].push_back({t, 1});
    G[t].push_back({s, 1});
  }

  int q; cin >> q;
  for(int i = 0; i < q; i++){
    int s; cin >> s;
    s--;
    auto dp = dikstra(s, G);
    int friends = 0, date = 0;
    for(int i = 0; i < n; i++){
      if(i != s && dp[i] != INF){
        friends++;
        date = max(date, dp[i]);
      }
    }
    int honsitu = 0, t = 1;
    while(t < date){
      honsitu++;
      t *= 2;
    }
    cout << friends << " " << honsitu << endl;
  }

  return 0;
}
0