結果

問題 No.812 Change of Class
ユーザー ttttanttttan
提出日時 2019-04-13 22:22:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 189 ms / 4,000 ms
コード長 1,131 bytes
コンパイル時間 3,003 ms
コンパイル使用メモリ 165,852 KB
実行使用メモリ 9,432 KB
最終ジャッジ日時 2024-06-12 20:41:00
合計ジャッジ時間 8,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
7,808 KB
testcase_01 AC 13 ms
6,940 KB
testcase_02 AC 43 ms
6,940 KB
testcase_03 AC 94 ms
8,576 KB
testcase_04 AC 82 ms
7,936 KB
testcase_05 AC 189 ms
8,064 KB
testcase_06 AC 164 ms
7,040 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 177 ms
8,704 KB
testcase_10 AC 184 ms
8,704 KB
testcase_11 AC 16 ms
6,944 KB
testcase_12 AC 123 ms
8,320 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 125 ms
6,944 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 118 ms
6,944 KB
testcase_18 AC 85 ms
6,940 KB
testcase_19 AC 97 ms
6,948 KB
testcase_20 AC 182 ms
8,576 KB
testcase_21 AC 81 ms
6,940 KB
testcase_22 AC 36 ms
6,940 KB
testcase_23 AC 7 ms
6,944 KB
testcase_24 AC 11 ms
6,944 KB
testcase_25 AC 29 ms
6,944 KB
testcase_26 AC 149 ms
7,680 KB
testcase_27 AC 133 ms
7,168 KB
testcase_28 AC 94 ms
6,944 KB
testcase_29 AC 21 ms
6,940 KB
testcase_30 AC 118 ms
7,040 KB
testcase_31 AC 102 ms
6,944 KB
testcase_32 AC 47 ms
6,944 KB
testcase_33 AC 126 ms
7,424 KB
testcase_34 AC 10 ms
6,944 KB
testcase_35 AC 23 ms
6,944 KB
testcase_36 AC 9 ms
6,940 KB
testcase_37 AC 58 ms
6,940 KB
testcase_38 AC 6 ms
6,944 KB
testcase_39 AC 60 ms
6,944 KB
testcase_40 AC 15 ms
6,940 KB
testcase_41 AC 4 ms
6,944 KB
testcase_42 AC 126 ms
6,940 KB
testcase_43 AC 32 ms
6,940 KB
testcase_44 AC 87 ms
6,940 KB
testcase_45 AC 11 ms
6,944 KB
testcase_46 AC 30 ms
6,944 KB
testcase_47 AC 86 ms
6,944 KB
testcase_48 AC 96 ms
6,944 KB
testcase_49 AC 24 ms
6,940 KB
testcase_50 AC 3 ms
6,940 KB
testcase_51 AC 26 ms
6,944 KB
testcase_52 AC 54 ms
6,940 KB
testcase_53 AC 16 ms
6,940 KB
testcase_54 AC 14 ms
6,940 KB
testcase_55 AC 65 ms
7,536 KB
testcase_56 AC 76 ms
8,392 KB
testcase_57 AC 80 ms
8,640 KB
testcase_58 AC 42 ms
6,940 KB
testcase_59 AC 91 ms
9,432 KB
testcase_60 AC 2 ms
6,944 KB
testcase_61 AC 1 ms
6,940 KB
testcase_62 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int logg(int a,int n){
    int now=1;
    for(int i=0;;i++){
        if(now>=n){
            return i;
        }
        now*=a;
    }
}
int main(){
    int n,m;cin>>n>>m;
    vector<int> v[n+1];
    for(int i=0;i<m;i++){
        int p,q;cin>>p>>q;
        v[p].push_back(q);
        v[q].push_back(p);
    }
    int Q;cin>>Q;
    for(int i=0;i<Q;i++){
        int a;cin>>a;
        bool used[n+1];
        fill(used,used+n+1,false);
        queue<int> q;
        q.push(a);
        used[a]=true;
        int cnt=-1;
        queue<int> dis;
        dis.push(0);
        int ma=0;
        while(q.size()>0){
            int now=q.front();
            int d=dis.front();
            dis.pop();
            q.pop();
            cnt++;
            ma=max(ma,d);
            for(int j=0;j<v[now].size();j++){
                if(used[v[now][j]]==false){
                used[v[now][j]]=true;
                q.push(v[now][j]);
                dis.push(d+1);
                }
                
            }
        }
        int u=logg(2,ma);
        
        cout<<cnt<<" "<<u<<endl;
    }
}
0