結果

問題 No.2913 二次元距離空間
ユーザー n0ma_run0ma_ru
提出日時 2024-10-04 22:00:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 1,321 bytes
コンパイル時間 2,737 ms
コンパイル使用メモリ 215,404 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-04 22:00:11
合計ジャッジ時間 3,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
int h,w;
vector<string> s;
int main() {
    cin >> h >> w;
    s.resize(h);
    for (int i = 0; i < h; ++i) cin >> s[i];

    using pii = pair<int,int>;
    int inf = 1e9;
    vector dp(h, vector<pii>(w, pii(inf,inf)));
    priority_queue<array<int,4>> pq;
    dp[0][0] = pii(0,0);
    pq.push({ 0,0,0,0 });
    int dx[] = {-1, 0, 1, 0, -1};
    while (pq.size()) {
        auto [cx, cy, x, y] = pq.top();
        pq.pop();
        cx = -cx;
        cy = -cy;
        if (pii(cx,cy) > dp[y][x]) continue;
        for (int i = 0; i < 4; ++i) {
            int nx = x + dx[i];
            int ny = y + dx[i+1];
            if (!(0 <= nx && nx < w && 0 <= ny && ny < h)) continue;
            if (s[ny][nx]=='#') continue;
            int a = abs(dx[i]);
            int b = abs(dx[i+1]);
            if (pii(cx+a, cy+b) < dp[ny][nx]) {
                dp[ny][nx] = pii(cx+a,cy+b);
                pq.push({-dp[ny][nx].first, -dp[ny][nx].second, nx, ny});
            }
        }
    }
    if (dp[h-1][w-1] == pii(inf,inf)) {
        cout << "No\n";
    }
    else {
        cout << "Yes\n";
        cout << dp[h-1][w-1].first << " " << dp[h-1][w-1].second << '\n';
    }
}
0