結果

問題 No.812 Change of Class
ユーザー ngtkanangtkana
提出日時 2020-03-30 22:11:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 167 ms / 4,000 ms
コード長 1,048 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 206,636 KB
実行使用メモリ 11,492 KB
最終ジャッジ日時 2024-06-23 04:49:11
合計ジャッジ時間 7,327 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
9,824 KB
testcase_01 AC 10 ms
5,376 KB
testcase_02 AC 37 ms
6,696 KB
testcase_03 AC 77 ms
10,848 KB
testcase_04 AC 72 ms
10,108 KB
testcase_05 AC 167 ms
10,784 KB
testcase_06 AC 129 ms
9,232 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 149 ms
11,380 KB
testcase_10 AC 150 ms
11,492 KB
testcase_11 AC 14 ms
7,200 KB
testcase_12 AC 79 ms
10,300 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 99 ms
8,436 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 89 ms
8,764 KB
testcase_18 AC 69 ms
7,416 KB
testcase_19 AC 78 ms
8,000 KB
testcase_20 AC 159 ms
11,232 KB
testcase_21 AC 68 ms
7,140 KB
testcase_22 AC 32 ms
5,376 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 24 ms
5,376 KB
testcase_26 AC 133 ms
9,556 KB
testcase_27 AC 119 ms
8,752 KB
testcase_28 AC 80 ms
7,976 KB
testcase_29 AC 18 ms
5,376 KB
testcase_30 AC 96 ms
8,656 KB
testcase_31 AC 84 ms
7,848 KB
testcase_32 AC 37 ms
5,504 KB
testcase_33 AC 109 ms
9,268 KB
testcase_34 AC 8 ms
5,376 KB
testcase_35 AC 20 ms
5,376 KB
testcase_36 AC 8 ms
5,376 KB
testcase_37 AC 49 ms
6,032 KB
testcase_38 AC 6 ms
5,376 KB
testcase_39 AC 51 ms
5,964 KB
testcase_40 AC 13 ms
5,376 KB
testcase_41 AC 5 ms
5,376 KB
testcase_42 AC 104 ms
8,548 KB
testcase_43 AC 19 ms
6,732 KB
testcase_44 AC 74 ms
7,100 KB
testcase_45 AC 8 ms
5,376 KB
testcase_46 AC 18 ms
6,656 KB
testcase_47 AC 71 ms
7,120 KB
testcase_48 AC 77 ms
8,132 KB
testcase_49 AC 21 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 22 ms
5,376 KB
testcase_52 AC 42 ms
7,180 KB
testcase_53 AC 14 ms
5,376 KB
testcase_54 AC 12 ms
5,376 KB
testcase_55 AC 44 ms
8,748 KB
testcase_56 AC 59 ms
10,252 KB
testcase_57 AC 61 ms
10,540 KB
testcase_58 AC 32 ms
7,092 KB
testcase_59 AC 68 ms
11,364 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using lint=long long;
using real=long double;
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint n,m;std::cin>>n>>m;
    std::vector<std::vector<lint>>g(n);
    while(m--){
        lint p,q;std::cin>>p>>q;p--,q--;
        g.at(p).push_back(q);
        g.at(q).push_back(p);
    }
    lint q;std::cin>>q;
    while(q--){
        lint r;std::cin>>r;r--;
        std::vector<lint>dist(n,-1),que={r};
        dist.at(r)=0;
        for(lint i=0;i<(lint)que.size();i++){
            lint x=que.at(i);
            for(lint y:g.at(x)){
                if(dist.at(y)!=-1)continue;
                dist.at(y)=dist.at(x)+1;
                que.push_back(y);
            }
        }
        lint sz=std::count_if(dist.begin(),dist.end(),[](lint x){return x!=-1;});
        lint d=*std::max_element(dist.begin(),dist.end());
        std::cout<<sz-1<<' '<<(d<=1?0:std::numeric_limits<lint>::digits-__builtin_clzll(d-1)+1)<<'\n';
    }
}
0