結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー kokatsukokatsu
提出日時 2022-12-14 22:53:17
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 1,027 bytes
コンパイル時間 3,676 ms
コンパイル使用メモリ 230,908 KB
実行使用メモリ 20,328 KB
最終ジャッジ日時 2024-06-22 17:04:58
合計ジャッジ時間 16,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 263 ms
13,008 KB
testcase_03 AC 377 ms
18,928 KB
testcase_04 AC 376 ms
19,056 KB
testcase_05 AC 294 ms
17,824 KB
testcase_06 AC 295 ms
19,372 KB
testcase_07 AC 78 ms
7,052 KB
testcase_08 AC 297 ms
20,092 KB
testcase_09 AC 27 ms
6,940 KB
testcase_10 AC 133 ms
9,940 KB
testcase_11 AC 93 ms
7,780 KB
testcase_12 AC 76 ms
6,940 KB
testcase_13 AC 286 ms
11,604 KB
testcase_14 AC 329 ms
16,344 KB
testcase_15 AC 385 ms
18,600 KB
testcase_16 AC 188 ms
9,468 KB
testcase_17 AC 422 ms
18,204 KB
testcase_18 AC 132 ms
7,872 KB
testcase_19 AC 388 ms
18,672 KB
testcase_20 AC 101 ms
7,392 KB
testcase_21 AC 159 ms
8,032 KB
testcase_22 AC 361 ms
17,184 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 5 ms
6,940 KB
testcase_25 AC 67 ms
6,940 KB
testcase_26 AC 202 ms
13,504 KB
testcase_27 AC 208 ms
12,240 KB
testcase_28 AC 357 ms
15,780 KB
testcase_29 AC 46 ms
6,940 KB
testcase_30 AC 388 ms
18,752 KB
testcase_31 AC 262 ms
15,312 KB
testcase_32 AC 166 ms
9,936 KB
testcase_33 AC 390 ms
19,940 KB
testcase_34 AC 135 ms
8,100 KB
testcase_35 AC 385 ms
17,060 KB
testcase_36 AC 4 ms
6,944 KB
testcase_37 AC 5 ms
6,940 KB
testcase_38 AC 4 ms
6,940 KB
testcase_39 AC 5 ms
6,944 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 512 ms
20,328 KB
testcase_42 AC 145 ms
7,884 KB
testcase_43 AC 265 ms
12,828 KB
testcase_44 AC 86 ms
6,944 KB
testcase_45 AC 257 ms
14,008 KB
testcase_46 AC 1 ms
6,940 KB
testcase_47 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

struct Pole {
    int to;
    real dist;
}

void main() {
    int N, M, X, Y;
    readf("%d %d\n%d %d\n", N, M, X, Y);

    --X, --Y;

    auto p = new real[](N), q = new real[](N);
    foreach (i; 0 .. N) readf("%f %f\n", p[i], q[i]);

    auto poles = new int[][](N);
    foreach (_; 0 .. M) {
        int P, Q;
        readf("%d %d\n", P, Q);

        --P, --Q;
        poles[P] ~= Q, poles[Q] ~= P;
    }

    auto dists = new real[](N);
    dists[] = real.max;
    dists[X] = 0.0;

    auto heap = new BinaryHeap!(Array!Pole, "a.dist > b.dist")();
    heap.insert(Pole(X, 0.0));
    while (!heap.empty) {
        auto f = heap.front;
        heap.popFront;

        if (f.dist > dists[f.to]) continue;

        foreach (pole; poles[f.to]) {
            real d = f.dist + hypot(p[f.to]-p[pole], q[f.to]-q[pole]);
            if (d < dists[pole]) {
                dists[pole] = d;
                heap.insert(Pole(pole, d));
            }
        }
    }

    real res = dists[Y];
    writefln("%.10f", res);
}
0