結果

問題 No.2913 二次元距離空間
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-10-04 21:47:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 2,755 bytes
コンパイル時間 4,648 ms
コンパイル使用メモリ 325,612 KB
実行使用メモリ 31,752 KB
最終ジャッジ日時 2024-10-04 21:47:37
合計ジャッジ時間 6,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 27 ms
18,512 KB
testcase_17 AC 31 ms
18,476 KB
testcase_18 AC 71 ms
27,468 KB
testcase_19 AC 78 ms
31,284 KB
testcase_20 AC 93 ms
26,420 KB
testcase_21 AC 35 ms
20,956 KB
testcase_22 AC 33 ms
20,264 KB
testcase_23 AC 76 ms
29,472 KB
testcase_24 AC 38 ms
22,176 KB
testcase_25 AC 79 ms
29,476 KB
testcase_26 AC 36 ms
20,704 KB
testcase_27 AC 75 ms
31,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;

template <typename T> struct Graph {
    struct edge {
        int to;
        T cost;
    };
    int N;
    vector<vector<edge>> G;
    vector<T> dist;
    vector<int> prever;

    Graph(int n) { init(n); }
    T inf() {
        if (is_same_v<T, int>)
            return 1e9;
        else
            return 1e18;
    }
    T zero() { return T(0); }

    void init(int n) {
        N = n;
        G.resize(N);
        dist.resize(N, inf());
    }
    void add_edge(int s, int t, T cost) {
        edge e;
        e.to = t, e.cost = cost;
        G[s].push_back(e);
    }
    void dijkstra(int s) {
        rep(i, 0, N) dist[i] = inf();
        prever = vector<int>(N, -1);
        dist[s] = zero();
        priority_queue<pair<T, int>, vector<pair<T, int>>,
                       greater<pair<T, int>>>
            q;
        q.push({zero(), s});
        while (!q.empty()) {
            int now;
            T nowdist;
            tie(nowdist, now) = q.top();
            q.pop();
            if (dist[now] < nowdist)
                continue;
            for (auto e : G[now]) {
                T nextdist = nowdist + e.cost; // 次の頂点への距離
                if (dist[e.to] > nextdist) {
                    prever[e.to] = now;
                    dist[e.to] = nextdist;
                    q.push({dist[e.to], e.to});
                }
            }
        }
    }

    vector<int> get_path(int t) { // tへの最短路構築
        if (dist[t] >= inf())
            return {-1};
        vector<int> path;
        for (; t != -1; t = prever[t]) {
            path.push_back(t);
        }
        reverse(path.begin(), path.end());
        return path;
    }
};

int main() {
    int h, w;
    cin >> h >> w;
    vector<string> s(h);
    rep(i, 0, h) cin >> s[i];
    Graph<ll> gr(h * w);
    rep(i, 0, h) rep(j, 0, w) {
        if (s[i][j] == '#')
            continue;
        rep(k, 0, 4) {
            int ni = i + "1012"[k] - '1';
            int nj = j + "2101"[k] - '1';
            if (ni < 0 || ni >= h || nj < 0 || nj >= w)
                continue;
            if (s[ni][nj] == '#')
                continue;
            ll cost = 0;
            if (i != ni)
                cost += 1;
            if (j != nj)
                cost += 1e9;
            gr.add_edge(i * w + j, ni * w + nj, cost);
        }
    }
    gr.dijkstra(0);
    ll ans = gr.dist[h * w - 1];
    if (ans >= gr.inf()) {
        cout << "No\n";
        return 0;
    }
    cout << "Yes\n";
    ll x = ans / (ll)1e9;
    ll y = ans % (ll)1e9;
    cout << x << ' ' << y << '\n';
}
0