結果

問題 No.812 Change of Class
ユーザー kappybarkappybar
提出日時 2020-04-14 20:02:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 175 ms / 4,000 ms
コード長 1,098 bytes
コンパイル時間 1,852 ms
コンパイル使用メモリ 176,364 KB
実行使用メモリ 9,408 KB
最終ジャッジ日時 2024-10-01 18:07:41
合計ジャッジ時間 8,710 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
7,936 KB
testcase_01 AC 12 ms
6,816 KB
testcase_02 AC 40 ms
6,820 KB
testcase_03 AC 87 ms
8,704 KB
testcase_04 AC 78 ms
8,064 KB
testcase_05 AC 175 ms
8,152 KB
testcase_06 AC 148 ms
7,040 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 153 ms
8,856 KB
testcase_10 AC 165 ms
8,852 KB
testcase_11 AC 17 ms
6,820 KB
testcase_12 AC 107 ms
8,504 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 109 ms
6,900 KB
testcase_16 AC 9 ms
6,820 KB
testcase_17 AC 107 ms
7,168 KB
testcase_18 AC 78 ms
6,816 KB
testcase_19 AC 88 ms
6,824 KB
testcase_20 AC 169 ms
8,672 KB
testcase_21 AC 73 ms
6,820 KB
testcase_22 AC 34 ms
6,820 KB
testcase_23 AC 7 ms
6,816 KB
testcase_24 AC 10 ms
6,820 KB
testcase_25 AC 27 ms
6,824 KB
testcase_26 AC 140 ms
7,936 KB
testcase_27 AC 121 ms
7,252 KB
testcase_28 AC 86 ms
6,820 KB
testcase_29 AC 20 ms
6,820 KB
testcase_30 AC 108 ms
7,076 KB
testcase_31 AC 94 ms
6,820 KB
testcase_32 AC 43 ms
6,820 KB
testcase_33 AC 117 ms
7,552 KB
testcase_34 AC 10 ms
6,824 KB
testcase_35 AC 22 ms
6,820 KB
testcase_36 AC 10 ms
6,820 KB
testcase_37 AC 52 ms
6,820 KB
testcase_38 AC 6 ms
6,820 KB
testcase_39 AC 53 ms
6,816 KB
testcase_40 AC 14 ms
6,816 KB
testcase_41 AC 5 ms
6,820 KB
testcase_42 AC 113 ms
7,088 KB
testcase_43 AC 32 ms
6,820 KB
testcase_44 AC 76 ms
6,820 KB
testcase_45 AC 10 ms
6,816 KB
testcase_46 AC 31 ms
6,820 KB
testcase_47 AC 75 ms
6,820 KB
testcase_48 AC 84 ms
6,820 KB
testcase_49 AC 22 ms
6,820 KB
testcase_50 AC 3 ms
6,820 KB
testcase_51 AC 25 ms
6,816 KB
testcase_52 AC 51 ms
6,824 KB
testcase_53 AC 15 ms
6,816 KB
testcase_54 AC 13 ms
6,820 KB
testcase_55 AC 53 ms
7,592 KB
testcase_56 AC 64 ms
8,328 KB
testcase_57 AC 69 ms
8,680 KB
testcase_58 AC 36 ms
6,816 KB
testcase_59 AC 77 ms
9,408 KB
testcase_60 AC 2 ms
6,820 KB
testcase_61 AC 2 ms
6,820 KB
testcase_62 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using ll =  long long ;
using P = pair<int,int> ;
const ll INF = 1e14;
const int MOD = 1000000007;

int main(){
    int n,m;
    cin >> n >> m;
    vector<vector<int>> graph(n,vector<int>());
    rep(i,m){
        int a,b;
        cin >> a >> b;
        --a;--b;
        graph[a].push_back(b);
        graph[b].push_back(a);
    }  
    int q;
    cin >> q;
    rep(_,q){
        int a;
        cin >> a;
        --a;
        int cnt = 0;
        int d = 0;
        vector<int> day(n,-1);
        queue<int> q;
        q.push(a);
        day[a] = 0;
        while(!q.empty()){
            int now = q.front();
            if(now != a) cnt ++;
            q.pop();
            for(int next:graph[now]){
                if(day[next] >= 0 ) continue;
                day[next] = day[now] + 1;
                d = max(d,day[next]);
                q.push(next);
            }
        }
        int ans = 0;
        int res = 1;
        while(res < d) res *= 2,ans++;
        cout << cnt << " " << ans  << endl;
    }
}
0