結果

問題 No.34 砂漠の行商人
ユーザー sotanishysotanishy
提出日時 2021-08-09 14:02:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,479 ms / 5,000 ms
コード長 1,329 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 218,548 KB
実行使用メモリ 76,024 KB
最終ジャッジ日時 2024-09-21 13:02:55
合計ジャッジ時間 33,927 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 8 ms
5,376 KB
testcase_04 AC 37 ms
5,376 KB
testcase_05 AC 38 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 59 ms
6,272 KB
testcase_08 AC 82 ms
8,192 KB
testcase_09 AC 1,832 ms
35,276 KB
testcase_10 AC 4,360 ms
73,856 KB
testcase_11 AC 2,407 ms
76,024 KB
testcase_12 AC 40 ms
5,376 KB
testcase_13 AC 4,479 ms
75,896 KB
testcase_14 AC 4,152 ms
71,748 KB
testcase_15 AC 583 ms
14,976 KB
testcase_16 AC 530 ms
13,668 KB
testcase_17 AC 1,728 ms
31,924 KB
testcase_18 AC 47 ms
5,376 KB
testcase_19 AC 987 ms
25,144 KB
testcase_20 AC 1,978 ms
40,292 KB
testcase_21 AC 6 ms
5,504 KB
testcase_22 AC 2,230 ms
40,884 KB
testcase_23 AC 1,032 ms
21,956 KB
testcase_24 AC 3,923 ms
65,904 KB
testcase_25 AC 145 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int dx[4] = {0, 1, 0, -1};
    int dy[4] = {1, 0, -1, 0};

    int N, V, sx, sy, gx, gy;
    cin >> N >> V >> sx >> sy >> gx >> gy;
    --sx, --sy, --gx, --gy;
    V = min(V, 18*(N-1));
    vector<vector<int>> L(N, vector<int>(N));
    for (int i = 0; i < N; ++i) {
        for (int j = 0; j < N; ++j) {
            cin >> L[i][j];
        }
    }
    vector dist(N, vector<vector<int>>(N, vector<int>(V, 1e9)));
    using T = tuple<int, int, int, int>;
    priority_queue<T, vector<T>, greater<T>> pq;
    dist[sx][sy][0] = 0;
    pq.push({0, sx, sy, 0});
    while (!pq.empty()) {
        int d, x, y, t;
        tie(d, x, y, t) = pq.top();
        pq.pop();
        if (dist[x][y][t] < d) continue;
        for (int k = 0; k < 4; ++k) {
            int nx = x + dx[k], ny = y + dy[k];
            if (0 <= nx && nx < N && 0 <= ny && ny < N) {
                int nt = t + L[ny][nx];
                if (nt < V && dist[nx][ny][nt] > d + 1) {
                    dist[nx][ny][nt] = d + 1;
                    pq.push({d + 1, nx, ny, nt});
                }
            }
        }
    }
    int ans = *min_element(dist[gx][gy].begin(), dist[gx][gy].end());
    cout << (ans < 1e9 ? ans : -1) << endl;
}
0