結果

問題 No.812 Change of Class
ユーザー parukiparuki
提出日時 2019-04-28 20:50:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 4,000 ms
コード長 2,162 bytes
コンパイル時間 1,938 ms
コンパイル使用メモリ 178,040 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-06-12 20:58:19
合計ジャッジ時間 7,221 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
7,808 KB
testcase_01 AC 10 ms
6,812 KB
testcase_02 AC 33 ms
6,944 KB
testcase_03 AC 68 ms
8,576 KB
testcase_04 AC 60 ms
7,936 KB
testcase_05 AC 184 ms
9,780 KB
testcase_06 AC 155 ms
9,492 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 180 ms
10,368 KB
testcase_10 AC 178 ms
10,348 KB
testcase_11 AC 13 ms
6,944 KB
testcase_12 AC 106 ms
9,380 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 106 ms
7,880 KB
testcase_16 AC 8 ms
6,944 KB
testcase_17 AC 103 ms
8,208 KB
testcase_18 AC 75 ms
6,944 KB
testcase_19 AC 86 ms
7,424 KB
testcase_20 AC 190 ms
10,012 KB
testcase_21 AC 72 ms
6,944 KB
testcase_22 AC 32 ms
6,944 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 11 ms
6,940 KB
testcase_25 AC 26 ms
6,944 KB
testcase_26 AC 138 ms
8,960 KB
testcase_27 AC 119 ms
8,328 KB
testcase_28 AC 81 ms
7,296 KB
testcase_29 AC 19 ms
6,944 KB
testcase_30 AC 110 ms
8,108 KB
testcase_31 AC 91 ms
7,296 KB
testcase_32 AC 39 ms
6,940 KB
testcase_33 AC 115 ms
8,704 KB
testcase_34 AC 9 ms
6,944 KB
testcase_35 AC 22 ms
6,940 KB
testcase_36 AC 11 ms
6,940 KB
testcase_37 AC 58 ms
6,940 KB
testcase_38 AC 6 ms
6,940 KB
testcase_39 AC 60 ms
6,944 KB
testcase_40 AC 14 ms
6,940 KB
testcase_41 AC 5 ms
6,940 KB
testcase_42 AC 122 ms
7,580 KB
testcase_43 AC 23 ms
6,940 KB
testcase_44 AC 86 ms
6,940 KB
testcase_45 AC 11 ms
6,944 KB
testcase_46 AC 21 ms
6,940 KB
testcase_47 AC 83 ms
6,940 KB
testcase_48 AC 87 ms
7,040 KB
testcase_49 AC 26 ms
6,940 KB
testcase_50 AC 3 ms
6,944 KB
testcase_51 AC 25 ms
6,940 KB
testcase_52 AC 48 ms
6,940 KB
testcase_53 AC 18 ms
6,944 KB
testcase_54 AC 15 ms
6,944 KB
testcase_55 AC 45 ms
8,264 KB
testcase_56 AC 53 ms
9,064 KB
testcase_57 AC 57 ms
9,428 KB
testcase_58 AC 30 ms
6,948 KB
testcase_59 AC 64 ms
10,324 KB
testcase_60 AC 2 ms
6,944 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define MT make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
#define RT return
using ll = long long;
using pii = pair<int, int>;
using vi = vector<int>;
using vll = vector<ll>;

typedef int Weight;
struct Edge {
    int from, to;
    Weight wei;
    Edge(int from_, int to_, Weight wei_) :from(from_), to(to_), wei(wei_) {}
};
typedef vector<Edge> Edges;
typedef vector<Edges> Graph;
const Weight INFW = numeric_limits<Weight>::max();

vector<Weight> bfs(Graph &G, int start) {
    vector<Weight> res(G.size(), -1);
    queue<pair<int, Weight> > Q;
    Q.push(make_pair(start, 0));
    while (Q.size()) {
        auto p = Q.front();
        Q.pop();
        if (res[p.first] != -1) continue;
        res[p.first] = p.second;
        for (auto &e : G[p.first])
            Q.push(make_pair(e.to, p.second + 1));
    }
    return res;
}

void solve() {
	// Q回BFS
    // 友達同士である距離は
    // 一日で2倍になる
    int N, M;
    cin >> N >> M;
    Graph G(N);
    rep(i, M) {
        int p, q;
        cin >> p >> q;
        --p; --q;
        G[p].emplace_back(p, q, 1);
        G[q].emplace_back(q, p, 1);
    }

    int Q;
    cin >> Q;
    rep(i, Q) {
        int A;
        cin >> A;
        --A;
        vi d = bfs(G, A);
        int friends = -1;
        int max_dis = 0;
        int day = 0;
        rep(j, N) {
            if (d[j] != -1) {
                friends++;
                smax(max_dis, d[j]);
            }
        }
        rep(j, 1 << 30) {
            if ((1 << j) >= max_dis) {
                day = j;
                break;
            }
        }
        cout << friends << ' ' << day << endl;
    }
}

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout << fixed << setprecision(15);
	solve();
	return 0;
}
0