結果

問題 No.812 Change of Class
ユーザー nebukuro09nebukuro09
提出日時 2019-04-12 21:54:11
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 894 ms / 4,000 ms
コード長 1,715 bytes
コンパイル時間 1,053 ms
コンパイル使用メモリ 136,020 KB
実行使用メモリ 35,688 KB
最終ジャッジ日時 2024-06-22 00:42:12
合計ジャッジ時間 20,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
13,752 KB
testcase_01 AC 43 ms
6,940 KB
testcase_02 AC 149 ms
9,116 KB
testcase_03 AC 322 ms
13,144 KB
testcase_04 AC 270 ms
13,752 KB
testcase_05 AC 882 ms
19,100 KB
testcase_06 AC 894 ms
22,068 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 718 ms
16,856 KB
testcase_10 AC 741 ms
17,028 KB
testcase_11 AC 34 ms
6,940 KB
testcase_12 AC 425 ms
14,200 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 530 ms
14,960 KB
testcase_16 AC 36 ms
6,940 KB
testcase_17 AC 493 ms
15,156 KB
testcase_18 AC 373 ms
13,996 KB
testcase_19 AC 408 ms
14,104 KB
testcase_20 AC 782 ms
16,752 KB
testcase_21 AC 347 ms
13,348 KB
testcase_22 AC 156 ms
6,940 KB
testcase_23 AC 27 ms
6,944 KB
testcase_24 AC 50 ms
6,940 KB
testcase_25 AC 124 ms
6,944 KB
testcase_26 AC 660 ms
15,752 KB
testcase_27 AC 607 ms
16,200 KB
testcase_28 AC 396 ms
14,196 KB
testcase_29 AC 95 ms
6,940 KB
testcase_30 AC 511 ms
16,012 KB
testcase_31 AC 449 ms
14,280 KB
testcase_32 AC 194 ms
7,396 KB
testcase_33 AC 523 ms
16,912 KB
testcase_34 AC 39 ms
6,944 KB
testcase_35 AC 90 ms
6,940 KB
testcase_36 AC 44 ms
6,940 KB
testcase_37 AC 248 ms
6,944 KB
testcase_38 AC 11 ms
6,944 KB
testcase_39 AC 259 ms
8,368 KB
testcase_40 AC 57 ms
6,940 KB
testcase_41 AC 10 ms
6,940 KB
testcase_42 AC 529 ms
13,856 KB
testcase_43 AC 66 ms
9,616 KB
testcase_44 AC 377 ms
9,688 KB
testcase_45 AC 49 ms
6,940 KB
testcase_46 AC 60 ms
8,000 KB
testcase_47 AC 363 ms
9,556 KB
testcase_48 AC 353 ms
13,092 KB
testcase_49 AC 120 ms
6,944 KB
testcase_50 AC 7 ms
6,940 KB
testcase_51 AC 94 ms
6,944 KB
testcase_52 AC 167 ms
9,740 KB
testcase_53 AC 74 ms
6,940 KB
testcase_54 AC 68 ms
6,944 KB
testcase_55 AC 491 ms
28,444 KB
testcase_56 AC 592 ms
31,160 KB
testcase_57 AC 625 ms
33,640 KB
testcase_58 AC 321 ms
18,880 KB
testcase_59 AC 716 ms
35,688 KB
testcase_60 AC 1 ms
6,940 KB
testcase_61 AC 1 ms
6,944 KB
testcase_62 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.string;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto M = s[1];
    auto G = new int[][](N);
    auto uf = new UnionFind(N);
    foreach (_; 0..M) {
        s = readln.split.map!(to!int);
        G[s[0]-1] ~= s[1]-1;
        G[s[1]-1] ~= s[0]-1;
        uf.unite(s[0]-1, s[1]-1);
    }

    auto Q = readln.chomp.to!int;
    auto dist = new int[](N);

    while (Q--) {
        auto a = readln.chomp.to!int - 1;
        dist[] = 1 << 29;
        auto pq = new BinaryHeap!(Array!(Tuple!(int, int)), "a[1] > b[1]");
        pq.insert(tuple(a, 0));

        while (!pq.empty) {
            auto n = pq.front[0];
            auto d = pq.front[1];
            pq.removeFront;
            if (dist[n] <= d) continue;
            dist[n] = d;
            foreach (m; G[n]) {
                if (dist[m] <= d + 1) continue;
                pq.insert(tuple(m, d+1));
            }
        }

        auto d = dist.filter!(x => x != 1 << 29).reduce!max;
        int ans = d <= 1 ? 0 : bsr(d-1) + 1;
        writeln(-uf.table[uf.find(a)]-1, " ", ans);
    }
}

class UnionFind {
    int N;
    int[] table;

    this(int n) {
        N = n;
        table = new int[](N);
        fill(table, -1);
    }

    int find(int x) {
        return table[x] < 0 ? x : (table[x] = find(table[x]));
    }

    void unite(int x, int y) {
        x = find(x);
        y = find(y);
        if (x == y) return;
        if (table[x] > table[y]) swap(x, y);
        table[x] += table[y];
        table[y] = x;
    }
}
0