結果

問題 No.812 Change of Class
ユーザー umezoumezo
提出日時 2022-08-13 05:39:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 529 ms / 4,000 ms
コード長 1,427 bytes
コンパイル時間 2,525 ms
コンパイル使用メモリ 213,016 KB
実行使用メモリ 13,956 KB
最終ジャッジ日時 2024-09-24 08:07:27
合計ジャッジ時間 14,968 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
9,344 KB
testcase_01 AC 13 ms
6,940 KB
testcase_02 AC 43 ms
6,944 KB
testcase_03 AC 90 ms
10,520 KB
testcase_04 AC 81 ms
9,728 KB
testcase_05 AC 529 ms
11,808 KB
testcase_06 AC 421 ms
11,100 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 462 ms
11,924 KB
testcase_10 AC 502 ms
12,040 KB
testcase_11 AC 14 ms
7,260 KB
testcase_12 AC 292 ms
10,704 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 359 ms
8,908 KB
testcase_16 AC 19 ms
6,944 KB
testcase_17 AC 286 ms
9,412 KB
testcase_18 AC 212 ms
7,760 KB
testcase_19 AC 241 ms
8,504 KB
testcase_20 AC 499 ms
11,616 KB
testcase_21 AC 198 ms
7,552 KB
testcase_22 AC 87 ms
6,944 KB
testcase_23 AC 15 ms
6,940 KB
testcase_24 AC 24 ms
6,944 KB
testcase_25 AC 72 ms
6,940 KB
testcase_26 AC 414 ms
10,436 KB
testcase_27 AC 363 ms
9,408 KB
testcase_28 AC 237 ms
8,472 KB
testcase_29 AC 54 ms
6,944 KB
testcase_30 AC 309 ms
9,164 KB
testcase_31 AC 278 ms
8,300 KB
testcase_32 AC 110 ms
6,944 KB
testcase_33 AC 325 ms
10,072 KB
testcase_34 AC 21 ms
6,940 KB
testcase_35 AC 53 ms
6,940 KB
testcase_36 AC 25 ms
6,944 KB
testcase_37 AC 152 ms
6,940 KB
testcase_38 AC 6 ms
6,940 KB
testcase_39 AC 157 ms
6,940 KB
testcase_40 AC 34 ms
6,944 KB
testcase_41 AC 5 ms
6,940 KB
testcase_42 AC 343 ms
8,588 KB
testcase_43 AC 30 ms
6,940 KB
testcase_44 AC 231 ms
7,140 KB
testcase_45 AC 26 ms
6,944 KB
testcase_46 AC 26 ms
6,940 KB
testcase_47 AC 226 ms
7,040 KB
testcase_48 AC 222 ms
7,936 KB
testcase_49 AC 70 ms
6,940 KB
testcase_50 AC 5 ms
6,940 KB
testcase_51 AC 55 ms
6,940 KB
testcase_52 AC 99 ms
7,296 KB
testcase_53 AC 44 ms
6,940 KB
testcase_54 AC 39 ms
6,944 KB
testcase_55 AC 262 ms
10,272 KB
testcase_56 AC 323 ms
12,468 KB
testcase_57 AC 344 ms
12,808 KB
testcase_58 AC 172 ms
8,128 KB
testcase_59 AC 389 ms
13,956 KB
testcase_60 AC 1 ms
6,944 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

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

const ll INF=1LL<<60;

struct Edge{
  int to;
  ll w;
  Edge(int to,ll w) : to(to),w(w) {}
};

using Graph=vector<vector<Edge>>;
using pli=pair<ll,int>;

template<class T> bool chmin(T& a,T b){
  if(a>b){
    a=b;
    return true;
  }
  return false;
}

Graph G;
vector<ll> dijkstra(int s){
  int n=G.size();
  vector<ll> dist(n,INF);
  dist[s]=0;
  
  priority_queue<pli,vector<pli>,greater<pli>> que;
  que.push({dist[s],s});
  
  while(!que.empty()){
    int v=que.top().second;
    ll d=que.top().first;
    que.pop();
    
    if(d>dist[v]) continue;
    
    for(auto e:G[v]){
      if(chmin(dist[e.to],dist[v]+e.w)){
        que.push({dist[e.to],e.to});
      }
    }
  }
  return dist;
}

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  int n,m;
  cin>>n>>m;
  
  G.resize(n);
  rep(i,m){
    int a,b;
    cin>>a>>b;
    a--,b--;
    G[a].push_back(Edge(b,1));
    G[b].push_back(Edge(a,1));
  }
  
  int q;
  cin>>q;
  while(q--){
    int a;
    cin>>a;
    a--;
    vector<ll> dis=dijkstra(a);
    ll cnt=0,ma=0;
    rep(i,n){
      if(i!=a && dis[i]!=INF){
        cnt++;
        ma=max(ma,dis[i]);
      }
    }
    ma--;
    int ans=0;
    while(ma>0){
      ans++;
      ma/=2;
    }
    cout<<cnt<<" "<<ans<<endl;
  }

  return 0;
}
0