結果

問題 No.2179 Planet Traveler
ユーザー nono00nono00
提出日時 2023-01-07 00:18:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,748 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 219,712 KB
実行使用メモリ 15,664 KB
最終ジャッジ日時 2024-05-08 00:09:11
合計ジャッジ時間 3,548 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 32 ms
14,080 KB
testcase_12 AC 26 ms
13,824 KB
testcase_13 WA -
testcase_14 AC 28 ms
14,080 KB
testcase_15 AC 30 ms
14,208 KB
testcase_16 WA -
testcase_17 AC 50 ms
15,664 KB
testcase_18 AC 37 ms
14,640 KB
testcase_19 AC 48 ms
15,664 KB
testcase_20 AC 7 ms
6,944 KB
testcase_21 AC 33 ms
13,764 KB
testcase_22 AC 22 ms
10,112 KB
testcase_23 AC 25 ms
9,928 KB
testcase_24 AC 36 ms
13,732 KB
testcase_25 AC 23 ms
10,368 KB
testcase_26 AC 41 ms
14,496 KB
testcase_27 AC 7 ms
6,944 KB
testcase_28 AC 18 ms
8,192 KB
testcase_29 AC 42 ms
13,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

constexpr double INF = 1e9;
constexpr double eps = 1e-10;

vector<double> dijkstra(const vector<vector<pair<int, double>>> &graph, int s) {
    int n = graph.size();
    priority_queue<pair<double, int>, vector<pair<double, int>>, greater<pair<double, int>>> hp;
    vector<double> dist(n, INF);
    vector<bool> used(n, false);
    dist[s] = 0;
    hp.emplace(0, s);

    while (!hp.empty()) {
        auto [_, u] = hp.top();
        hp.pop();

        if (used[u]) 
            continue;
        used[u] = true;

        for (auto [v, w]: graph[u]) {
            if (used[v])
                continue;
            if (max(dist[u], w) < dist[v]) {
                dist[v] = max(dist[u], w);
                hp.emplace(dist[v], v);
            }
        }
    }

    return dist;
}

int main() {
    int n;
    cin >> n;
    vector<vector<int>> planets(n, vector<int>(3));

    for (int i = 0; i < n; i++) {
        cin >> planets[i][0] >> planets[i][1] >> planets[i][2];
    }

    vector<vector<pair<int, double>>> graph(n);

    for (int i = 0; i < n; i++) {
        graph[i].reserve(n);
        for (int j = 0; j < n; j++) {
            if (planets[i][2] == planets[j][2]) {
                graph[i].emplace_back(j, hypot(planets[i][0] - planets[j][0], 
                                                planets[i][1] - planets[j][1]));
            } else {
                graph[i].emplace_back(j, abs(hypot(planets[i][0], planets[i][1]) -
                                                hypot(planets[j][0], planets[j][1])));
            }
        }
    }

    vector<double> dist = dijkstra(graph, 0);
    double s = dist[n - 1];
    long long ans = ceil(s * s - eps);
    cout << ans << endl;
}
0