結果

問題 No.812 Change of Class
ユーザー umezoumezo
提出日時 2022-08-13 05:39:32
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 554 ms / 4,000 ms
コード長 1,427 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 206,140 KB
最終ジャッジ日時 2025-01-30 22:07:57
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 60
権限があれば一括ダウンロードができます

ソースコード

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