結果

問題 No.812 Change of Class
ユーザー treeonetreeone
提出日時 2019-04-12 21:56:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 4,000 ms
コード長 1,361 bytes
コンパイル時間 2,037 ms
コンパイル使用メモリ 207,644 KB
実行使用メモリ 10,644 KB
最終ジャッジ日時 2024-06-12 07:02:14
合計ジャッジ時間 6,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
8,960 KB
testcase_01 AC 9 ms
6,144 KB
testcase_02 AC 24 ms
7,452 KB
testcase_03 AC 49 ms
9,344 KB
testcase_04 AC 42 ms
9,088 KB
testcase_05 AC 125 ms
9,984 KB
testcase_06 AC 107 ms
9,600 KB
testcase_07 AC 6 ms
6,272 KB
testcase_08 AC 3 ms
5,760 KB
testcase_09 AC 121 ms
10,180 KB
testcase_10 AC 122 ms
9,984 KB
testcase_11 AC 11 ms
7,360 KB
testcase_12 AC 81 ms
9,540 KB
testcase_13 AC 3 ms
6,016 KB
testcase_14 AC 3 ms
5,888 KB
testcase_15 AC 85 ms
8,704 KB
testcase_16 AC 8 ms
6,016 KB
testcase_17 AC 81 ms
8,832 KB
testcase_18 AC 58 ms
7,936 KB
testcase_19 AC 68 ms
8,448 KB
testcase_20 AC 130 ms
9,936 KB
testcase_21 AC 57 ms
7,936 KB
testcase_22 AC 26 ms
6,784 KB
testcase_23 AC 7 ms
5,888 KB
testcase_24 AC 9 ms
6,016 KB
testcase_25 AC 23 ms
6,528 KB
testcase_26 AC 104 ms
9,344 KB
testcase_27 AC 92 ms
8,872 KB
testcase_28 AC 65 ms
8,320 KB
testcase_29 AC 16 ms
6,272 KB
testcase_30 AC 82 ms
8,832 KB
testcase_31 AC 75 ms
8,192 KB
testcase_32 AC 33 ms
7,040 KB
testcase_33 AC 87 ms
9,240 KB
testcase_34 AC 9 ms
6,016 KB
testcase_35 AC 18 ms
6,400 KB
testcase_36 AC 8 ms
6,144 KB
testcase_37 AC 38 ms
7,296 KB
testcase_38 AC 6 ms
6,400 KB
testcase_39 AC 40 ms
7,168 KB
testcase_40 AC 12 ms
6,400 KB
testcase_41 AC 6 ms
6,272 KB
testcase_42 AC 82 ms
8,704 KB
testcase_43 AC 20 ms
7,680 KB
testcase_44 AC 58 ms
7,936 KB
testcase_45 AC 9 ms
6,272 KB
testcase_46 AC 18 ms
7,680 KB
testcase_47 AC 57 ms
8,064 KB
testcase_48 AC 66 ms
8,320 KB
testcase_49 AC 18 ms
6,528 KB
testcase_50 AC 4 ms
6,016 KB
testcase_51 AC 20 ms
6,784 KB
testcase_52 AC 38 ms
7,808 KB
testcase_53 AC 13 ms
6,272 KB
testcase_54 AC 10 ms
6,400 KB
testcase_55 AC 36 ms
9,204 KB
testcase_56 AC 36 ms
9,748 KB
testcase_57 AC 37 ms
10,004 KB
testcase_58 AC 20 ms
7,952 KB
testcase_59 AC 40 ms
10,644 KB
testcase_60 AC 4 ms
5,888 KB
testcase_61 AC 3 ms
5,888 KB
testcase_62 AC 3 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
#define int long long
using namespace std;
typedef pair<int, int> P;
const int mod = 1000000007;
const int INF = 1e18;

int n, m;
vector<int> G[100010];
int d[100010];

signed main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cin >> n >> m;
    rep(i, 0, m){
        int p, q;
        cin >> p >> q;
        p--; q--;
        G[p].push_back(q);
        G[q].push_back(p);
    }
    int Q;
    cin >> Q;
    while(Q--){
        int a;
        cin >> a;
        a--;
        rep(i, 0, n) d[i] = -1;
        queue<int> q;
        q.push(a);
        d[a] = 0;
        while(!q.empty()){
            int tmp = q.front(); q.pop();
            for(auto i : G[tmp]){
                if(d[i] != -1) continue;
                d[i] = d[tmp] + 1;
                q.push(i);
            }
        }
        int ans = 0, day = 0;
        rep(i, 0, n){
            if(d[i] != -1){
                ans++;
                day = max(day, d[i]);
            }
        }
        if(ans == 0) cout << 0 << ' ' << 0 << endl;
        else{
            int now = 1;
            for(int j = 0;; j++){
                if(day <= now){
                    day = j; break;
                }
                now *= 2;
            }
            cout << ans - 1 << ' ' <<  day << endl;
        }
    }
}
0