結果

問題 No.812 Change of Class
ユーザー outlineoutline
提出日時 2020-12-18 22:33:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 4,000 ms
コード長 2,081 bytes
コンパイル時間 1,542 ms
コンパイル使用メモリ 140,680 KB
実行使用メモリ 9,560 KB
最終ジャッジ日時 2024-09-21 09:29:14
合計ジャッジ時間 7,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
7,936 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 30 ms
6,944 KB
testcase_03 AC 62 ms
8,832 KB
testcase_04 AC 54 ms
8,064 KB
testcase_05 AC 153 ms
8,172 KB
testcase_06 AC 125 ms
7,040 KB
testcase_07 AC 5 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 153 ms
8,748 KB
testcase_10 AC 153 ms
8,880 KB
testcase_11 AC 16 ms
6,940 KB
testcase_12 AC 105 ms
8,532 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 101 ms
6,940 KB
testcase_16 AC 8 ms
6,944 KB
testcase_17 AC 92 ms
7,176 KB
testcase_18 AC 70 ms
6,940 KB
testcase_19 AC 79 ms
6,940 KB
testcase_20 AC 158 ms
8,696 KB
testcase_21 AC 68 ms
6,940 KB
testcase_22 AC 30 ms
6,944 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 10 ms
6,944 KB
testcase_25 AC 25 ms
6,944 KB
testcase_26 AC 124 ms
7,940 KB
testcase_27 AC 110 ms
7,296 KB
testcase_28 AC 77 ms
6,944 KB
testcase_29 AC 19 ms
6,940 KB
testcase_30 AC 100 ms
7,100 KB
testcase_31 AC 85 ms
6,940 KB
testcase_32 AC 38 ms
6,944 KB
testcase_33 AC 109 ms
7,556 KB
testcase_34 AC 9 ms
6,940 KB
testcase_35 AC 20 ms
6,940 KB
testcase_36 AC 8 ms
6,940 KB
testcase_37 AC 47 ms
6,944 KB
testcase_38 AC 8 ms
6,944 KB
testcase_39 AC 49 ms
6,948 KB
testcase_40 AC 14 ms
6,940 KB
testcase_41 AC 6 ms
6,944 KB
testcase_42 AC 100 ms
7,100 KB
testcase_43 AC 24 ms
6,940 KB
testcase_44 AC 70 ms
6,940 KB
testcase_45 AC 9 ms
6,944 KB
testcase_46 AC 23 ms
6,940 KB
testcase_47 AC 70 ms
6,940 KB
testcase_48 AC 80 ms
6,944 KB
testcase_49 AC 20 ms
6,944 KB
testcase_50 AC 3 ms
6,940 KB
testcase_51 AC 24 ms
6,944 KB
testcase_52 AC 47 ms
6,940 KB
testcase_53 AC 14 ms
6,944 KB
testcase_54 AC 12 ms
6,940 KB
testcase_55 AC 47 ms
7,744 KB
testcase_56 AC 55 ms
8,352 KB
testcase_57 AC 58 ms
8,708 KB
testcase_58 AC 30 ms
6,940 KB
testcase_59 AC 64 ms
9,560 KB
testcase_60 AC 2 ms
6,940 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
using namespace std;

using ll = long long;
using P = pair<int, int>;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, M, Q, A;
    cin >> N >> M;
    vector<vector<int>> graph(N);
    for(int i = 0; i < M; ++i){
        int p, q;
        cin >> p >> q;
        --p, --q;
        graph[p].emplace_back(q);
        graph[q].emplace_back(p);
    }
    vector<int> pow2(26, 1);
    for(int i = 1; i <= 25; ++i)    pow2[i] = pow2[i - 1] * 2;
    cin >> Q;
    for(int q = 0; q < Q; ++q){
        cin >> A;
        --A;
        vector<int> dist(N, INF);
        dist[A] = 0;
        queue<int> que;
        que.emplace(A);
        while(!que.empty()){
            int from = que.front();
            que.pop();
            for(int to : graph[from]){
                if(chmin(dist[to], dist[from] + 1)){
                    que.emplace(to);
                }
            }
        }
        int cnt = 0, max_dist = 0;
        for(int i = 0; i < N; ++i){
            if(i == A || dist[i] == INF)    continue;
            cnt += 1;
            chmax(max_dist, dist[i]);
        }
        int day = lower_bound(begin(pow2), end(pow2), max_dist) - begin(pow2);
        cout << cnt << ' ' << day << '\n';
    }
    
    return 0;
}
0