結果

問題 No.812 Change of Class
ユーザー chocoruskchocorusk
提出日時 2019-04-12 21:46:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 186 ms / 4,000 ms
コード長 1,407 bytes
コンパイル時間 965 ms
コンパイル使用メモリ 105,936 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-12 06:47:51
合計ジャッジ時間 7,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
8,576 KB
testcase_01 AC 15 ms
6,400 KB
testcase_02 AC 45 ms
7,552 KB
testcase_03 AC 93 ms
8,960 KB
testcase_04 AC 82 ms
8,704 KB
testcase_05 AC 186 ms
8,832 KB
testcase_06 AC 158 ms
8,268 KB
testcase_07 AC 5 ms
6,272 KB
testcase_08 AC 5 ms
6,144 KB
testcase_09 AC 179 ms
8,960 KB
testcase_10 AC 179 ms
9,088 KB
testcase_11 AC 18 ms
6,912 KB
testcase_12 AC 124 ms
8,448 KB
testcase_13 AC 4 ms
6,144 KB
testcase_14 AC 4 ms
6,272 KB
testcase_15 AC 122 ms
7,936 KB
testcase_16 AC 11 ms
6,272 KB
testcase_17 AC 113 ms
8,064 KB
testcase_18 AC 89 ms
7,424 KB
testcase_19 AC 99 ms
7,680 KB
testcase_20 AC 184 ms
8,960 KB
testcase_21 AC 85 ms
7,424 KB
testcase_22 AC 39 ms
6,784 KB
testcase_23 AC 10 ms
6,144 KB
testcase_24 AC 13 ms
6,272 KB
testcase_25 AC 31 ms
6,656 KB
testcase_26 AC 150 ms
8,448 KB
testcase_27 AC 131 ms
8,192 KB
testcase_28 AC 98 ms
7,936 KB
testcase_29 AC 24 ms
6,528 KB
testcase_30 AC 123 ms
7,936 KB
testcase_31 AC 102 ms
7,524 KB
testcase_32 AC 48 ms
6,912 KB
testcase_33 AC 130 ms
8,320 KB
testcase_34 AC 12 ms
6,400 KB
testcase_35 AC 26 ms
6,528 KB
testcase_36 AC 11 ms
6,400 KB
testcase_37 AC 56 ms
7,168 KB
testcase_38 AC 9 ms
6,272 KB
testcase_39 AC 59 ms
7,168 KB
testcase_40 AC 17 ms
6,400 KB
testcase_41 AC 7 ms
6,272 KB
testcase_42 AC 119 ms
8,064 KB
testcase_43 AC 37 ms
7,424 KB
testcase_44 AC 82 ms
7,552 KB
testcase_45 AC 12 ms
6,528 KB
testcase_46 AC 34 ms
7,424 KB
testcase_47 AC 81 ms
7,552 KB
testcase_48 AC 92 ms
7,784 KB
testcase_49 AC 25 ms
6,528 KB
testcase_50 AC 5 ms
6,272 KB
testcase_51 AC 30 ms
6,656 KB
testcase_52 AC 60 ms
7,552 KB
testcase_53 AC 18 ms
6,400 KB
testcase_54 AC 16 ms
6,400 KB
testcase_55 AC 56 ms
8,424 KB
testcase_56 AC 62 ms
8,844 KB
testcase_57 AC 66 ms
9,136 KB
testcase_58 AC 38 ms
7,804 KB
testcase_59 AC 75 ms
9,600 KB
testcase_60 AC 4 ms
6,144 KB
testcase_61 AC 4 ms
6,016 KB
testcase_62 AC 4 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const int INF=1e8;
int n, m;
vector<int> g[100001];
void bfs(int s, int d[100001]){
    fill(d, d+n, INF);
    d[s]=0;
    queue<int> que; que.push(s);
    while(!que.empty()){
        int x=que.front(); que.pop();
        for(auto y:g[x]){
            if(d[y]>d[x]+1){
                d[y]=d[x]+1;
                que.push(y);
            }
        }
    }
}

int main()
{
    cin>>n>>m;
    for(int i=0; i<m; i++){
        int a, b; cin>>a>>b; a--; b--;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    int q; cin>>q;
    for(int i=0; i<q; i++){
        int a; cin>>a; a--;
        int d[100001];
        bfs(a, d);
        int ct=0;
        int mx=1;
        for(int i=0; i<n; i++){
            if(d[i]<INF){
                ct++;
                mx=max(mx, d[i]);
            }
        }
        int ans=0;
        int p2=1;
        while(p2<mx){
            p2<<=1; ans++;
        }
        cout<<ct-1<<" "<<ans<<endl;
    }
    return 0;
}
0