結果

問題 No.34 砂漠の行商人
ユーザー vwxyzvwxyz
提出日時 2023-12-19 07:32:42
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 2,444 ms / 5,000 ms
コード長 1,666 bytes
コンパイル時間 2,650 ms
コンパイル使用メモリ 170,320 KB
実行使用メモリ 146,688 KB
最終ジャッジ日時 2024-09-27 08:39:18
合計ジャッジ時間 27,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 13 ms
6,940 KB
testcase_03 AC 9 ms
6,944 KB
testcase_04 AC 182 ms
21,632 KB
testcase_05 AC 272 ms
31,488 KB
testcase_06 AC 102 ms
15,488 KB
testcase_07 AC 558 ms
54,528 KB
testcase_08 AC 1,084 ms
85,120 KB
testcase_09 AC 866 ms
66,688 KB
testcase_10 AC 1,134 ms
144,512 KB
testcase_11 AC 1,045 ms
146,048 KB
testcase_12 AC 198 ms
22,784 KB
testcase_13 AC 2,444 ms
146,688 KB
testcase_14 AC 2,342 ms
138,368 KB
testcase_15 AC 244 ms
26,368 KB
testcase_16 AC 215 ms
24,064 KB
testcase_17 AC 823 ms
64,384 KB
testcase_18 AC 17 ms
6,948 KB
testcase_19 AC 1,988 ms
126,336 KB
testcase_20 AC 2,246 ms
134,212 KB
testcase_21 AC 2,384 ms
142,464 KB
testcase_22 AC 1,850 ms
115,328 KB
testcase_23 AC 430 ms
39,552 KB
testcase_24 AC 1,970 ms
126,464 KB
testcase_25 AC 743 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <vector>
#include <climits>
#include <bits/stdc++.h>

using namespace std;

int main() {
    int N, V, Sy, Sx, Gy, Gx;
    cin >> N >> V >> Sy >> Sx >> Gy >> Gx;
    Sx--; Sy--; Gx--; Gy--;

    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];
        }
    }

    const long long inf = LLONG_MAX;
    vector<vector<long long>> dist(18 * N, vector<long long>(N * N, inf));
    dist[0][Sx * N + Sy] = 0;
    deque<tuple<long long, int, int, int>> queue;
    queue.push_back(make_tuple(0, 0, Sx, Sy));

    while (!queue.empty()) {
        tuple<long long, int, int, int> tup = queue.front();
        long long d = get<0>(tup);
        int v = get<1>(tup);
        int x = get<2>(tup);
        int y = get<3>(tup);

        queue.pop_front();

        if (dist[v][x * N + y] < d) {
            continue;
        }

        for (auto [dx, dy] : vector<pair<int, int>>{{0, 1}, {1, 0}, {0, -1}, {-1, 0}}) {
            int xx = x + dx;
            int yy = y + dy;

            if (0 <= xx && xx < N && 0 <= yy && yy < N) {
                int vv = v + L[xx][yy];

                if (vv < 18 * N && dist[vv][xx * N + yy] > d + 1) {
                    dist[vv][xx * N + yy] = d + 1;
                    queue.push_back({d + 1, vv, xx, yy});
                }
            }
        }
    }

    long long ans = inf;
    for (int v = 0; v < 18 * N; ++v) {
        if (v < V) {
            ans = min(ans, dist[v][Gx * N + Gy]);
        }
    }

    if (ans == inf) {
        ans = -1;
    }

    cout << ans << endl;

    return 0;
}
0