結果

問題 No.812 Change of Class
ユーザー granddaifukugranddaifuku
提出日時 2020-04-26 19:33:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 473 ms / 4,000 ms
コード長 1,843 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 178,848 KB
実行使用メモリ 11,340 KB
最終ジャッジ日時 2024-11-17 19:49:23
合計ジャッジ時間 13,827 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
8,216 KB
testcase_01 AC 14 ms
5,248 KB
testcase_02 AC 47 ms
5,888 KB
testcase_03 AC 103 ms
8,960 KB
testcase_04 AC 90 ms
8,448 KB
testcase_05 AC 473 ms
9,368 KB
testcase_06 AC 376 ms
8,568 KB
testcase_07 AC 6 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 424 ms
10,216 KB
testcase_10 AC 439 ms
9,856 KB
testcase_11 AC 16 ms
7,204 KB
testcase_12 AC 261 ms
9,288 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 302 ms
7,680 KB
testcase_16 AC 19 ms
5,248 KB
testcase_17 AC 264 ms
8,108 KB
testcase_18 AC 200 ms
6,528 KB
testcase_19 AC 230 ms
7,296 KB
testcase_20 AC 450 ms
9,696 KB
testcase_21 AC 191 ms
6,528 KB
testcase_22 AC 84 ms
5,248 KB
testcase_23 AC 15 ms
5,248 KB
testcase_24 AC 24 ms
5,248 KB
testcase_25 AC 68 ms
5,248 KB
testcase_26 AC 375 ms
8,576 KB
testcase_27 AC 322 ms
8,064 KB
testcase_28 AC 224 ms
7,188 KB
testcase_29 AC 53 ms
5,248 KB
testcase_30 AC 285 ms
7,808 KB
testcase_31 AC 249 ms
7,040 KB
testcase_32 AC 105 ms
5,248 KB
testcase_33 AC 297 ms
8,448 KB
testcase_34 AC 22 ms
5,248 KB
testcase_35 AC 55 ms
5,248 KB
testcase_36 AC 26 ms
5,248 KB
testcase_37 AC 155 ms
5,504 KB
testcase_38 AC 7 ms
5,248 KB
testcase_39 AC 158 ms
5,504 KB
testcase_40 AC 36 ms
5,248 KB
testcase_41 AC 6 ms
5,248 KB
testcase_42 AC 340 ms
7,552 KB
testcase_43 AC 33 ms
6,712 KB
testcase_44 AC 230 ms
6,400 KB
testcase_45 AC 27 ms
5,248 KB
testcase_46 AC 28 ms
6,400 KB
testcase_47 AC 226 ms
6,400 KB
testcase_48 AC 222 ms
7,168 KB
testcase_49 AC 70 ms
5,248 KB
testcase_50 AC 5 ms
5,248 KB
testcase_51 AC 57 ms
5,248 KB
testcase_52 AC 102 ms
6,784 KB
testcase_53 AC 44 ms
5,248 KB
testcase_54 AC 39 ms
5,248 KB
testcase_55 AC 236 ms
8,620 KB
testcase_56 AC 283 ms
10,168 KB
testcase_57 AC 304 ms
10,272 KB
testcase_58 AC 152 ms
6,868 KB
testcase_59 AC 346 ms
11,340 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define rep(i, n) for(int i = 0; i < (int)n; ++i)
#define FOR(i, a, b) for(int i = a; i < (int)b; ++i)
#define rrep(i, n) for(int i = ((int)n - 1); i >= 0; --i)

typedef long long ll;
typedef long double ld;

const int Inf = 1e9;
const double EPS = 1e-9;
const int MOD = 1e9 + 7;

int n;

using P = pair<int, int>;

struct edge {
    int to;
    int cost;
};

vector<int> dist;
vector<vector<edge> > g;

void dijkstra(int s) {
    dist = vector<int>(n, Inf);
    dist[s] = 0;
    priority_queue<P, vector<P>, greater<P> > pq;
    pq.push(P(0, s));

    while (!pq.empty()) {
        P p = pq.top();
        pq.pop();
        int v = p.second;
        if (dist[v] < p.first) continue;

        rep (i, g[v].size()) {
            edge e = g[v][i];
            if (dist[e.to] > dist[v] + e.cost) {
                dist[e.to] = dist[v] + e.cost;
                pq.push(P(dist[e.to], e.to));
            }
        }
    }
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(0);
    int m, q;
    cin >> n >> m;
    g = vector<vector<edge> >(n, vector<edge>());
    rep (i, m) {
        int s, t;
        cin >> s >> t;
        s--, t--;
        edge e;
        e.to = t;
        e.cost = 1;
        g[s].push_back(e);
        e.to = s;
        g[t].push_back(e);
    }
    cin >> q;
    rep (x, q) {
        int a;
        cin >> a;
        a--;
        dijkstra(a);
        int cnt = 0;
        int day = 0;
        rep (i, n) {
            if (i == a) continue;
            if (dist[i] == Inf) continue;
            cnt++;
            int tmp = 0;
            dist[i]--;
            while (dist[i] > 0) {
                dist[i] /= 2;
                tmp++;
            }
            day = max(day, tmp);
        }
        cout << cnt << " " << day << endl;
    }
    
    return 0;
}

0