結果

問題 No.2913 二次元距離空間
ユーザー Today03Today03
提出日時 2024-10-04 22:02:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 1,382 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 261,572 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-10-04 22:02:18
合計ジャッジ時間 3,937 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 11 ms
5,888 KB
testcase_17 AC 11 ms
6,016 KB
testcase_18 AC 32 ms
6,016 KB
testcase_19 AC 29 ms
6,016 KB
testcase_20 AC 32 ms
5,888 KB
testcase_21 AC 8 ms
5,888 KB
testcase_22 AC 8 ms
5,888 KB
testcase_23 AC 30 ms
6,144 KB
testcase_24 AC 8 ms
5,888 KB
testcase_25 AC 32 ms
6,016 KB
testcase_26 AC 9 ms
5,888 KB
testcase_27 AC 29 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

const vector<int> dx = {1, 0, -1, 0};
const vector<int> dy = {0, 1, 0, -1};

int main() {
    int H, W;
    cin >> H >> W;
    vector<string> S(H);
    for (int i = 0; i < H; i++) cin >> S[i];

    using P = pair<int, int>;
    vector<vector<P>> dst(H, vector<P>(W, P(INF, INF)));
    priority_queue<pair<P, P>, vector<pair<P, P>>, greater<pair<P, P>>> pq;
    pq.push({P(0, 0), P(0, 0)});
    while (!pq.empty()) {
        auto [horz, vert] = pq.top().first;
        auto [x, y] = pq.top().second;
        pq.pop();
        if (dst[x][y] < P(horz, vert)) continue;
        for (int i = 0; i < 4; i++) {
            int nx = x + dx[i], ny = y + dy[i];
            if (nx < 0 || nx >= H || ny < 0 || ny >= W) continue;
            if (S[nx][ny] == '#') continue;
            int nvert = vert, nhorz = horz;
            if (x != nx) nvert++;
            if (y != ny) nhorz++;
            if (dst[nx][ny] > P(nhorz, nvert)) {
                dst[nx][ny] = P(nhorz, nvert);
                pq.push({P(nhorz, nvert), P(nx, ny)});
            }
        }
    }

    if (dst.back().back() == P(INF, INF)) {
        cout << "No" << endl;
    } else {
        cout << "Yes" << endl;
        cout << dst.back().back().first << ' ' << dst.back().back().second << endl;
    }
}
0