結果

問題 No.867 避難経路
ユーザー mencottonmencotton
提出日時 2019-08-17 00:03:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,593 ms / 6,000 ms
コード長 1,724 bytes
コンパイル時間 1,414 ms
コンパイル使用メモリ 95,804 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-09-23 04:23:54
合計ジャッジ時間 45,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1,359 ms
14,720 KB
testcase_16 AC 1,489 ms
18,304 KB
testcase_17 AC 1,332 ms
13,696 KB
testcase_18 AC 1,501 ms
17,664 KB
testcase_19 AC 1,500 ms
18,176 KB
testcase_20 AC 1,479 ms
17,536 KB
testcase_21 AC 1,540 ms
19,968 KB
testcase_22 AC 1,514 ms
17,152 KB
testcase_23 AC 1,370 ms
14,208 KB
testcase_24 AC 1,575 ms
18,432 KB
testcase_25 AC 1,593 ms
18,560 KB
testcase_26 AC 1,575 ms
18,688 KB
testcase_27 AC 1,479 ms
15,488 KB
testcase_28 AC 1,211 ms
8,192 KB
testcase_29 AC 1,211 ms
8,192 KB
testcase_30 AC 1,162 ms
8,960 KB
testcase_31 AC 1,110 ms
9,344 KB
testcase_32 AC 1,105 ms
9,344 KB
testcase_33 AC 1,106 ms
9,472 KB
testcase_34 AC 1,177 ms
9,216 KB
testcase_35 AC 1,501 ms
22,656 KB
testcase_36 AC 1,106 ms
9,472 KB
testcase_37 AC 1,429 ms
18,432 KB
testcase_38 AC 1,369 ms
16,768 KB
testcase_39 AC 1,308 ms
14,464 KB
testcase_40 AC 1,258 ms
13,440 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>

using namespace std;
typedef long long ll;

int h, w;
vector<vector<int>> ban;
vector<vector<vector<pair<ll, ll>>>> dp;

void bfs(vector<ll> start) {
    priority_queue<vector<ll>, vector<vector<ll>>, greater<>> que;
    que.push(start);

    vector<int> mx{1, -1, 0, 0};
    vector<int> my{0, 0, 1, -1};
    while (true) {
        if (que.empty())break;

        vector<ll> now = que.top();
        que.pop();
        auto &v = dp[now[2]][now[3]];
        if (now[1] >= v[v.size() - 1].second)continue;

        v.push_back({now[0], now[1]});
        for (int i = 0; i < 4; i++) {
            int ax = now[2] + mx[i];
            int ay = now[3] + my[i];
            if (0 <= ax && ax < h && 0 <= ay && ay < w) {
                auto nv = dp[ax][ay];
                if (now[1] + ban[ax][ay] < nv[nv.size() - 1].second)
                    que.push({now[0] + 1, now[1] + ban[ax][ay], ax, ay});
            }
        }
    }
}

int main() {
    int gx, gy;
    cin >> h >> w >> gx >> gy;
    gx--;
    gy--;
    ban = vector<vector<int>>(h, vector<int>(w));
    for (int i = 0; i < h; i++)
        for (int j = 0; j < w; j++)cin >> ban[i][j];

    dp = vector<vector<vector<pair<ll, ll>>>>
            (h, vector<vector<pair<ll, ll>>>(w, vector<pair<ll, ll>>{{0, 1145141919810364}}));
    bfs({1, ban[gx][gy], gx, gy});

    int q;
    cin >> q;
    for (int i = 0; i < q; i++) {
        ll x, y, k;
        cin >> x >> y >> k;
        x--;
        y--;
        ll ret = 1145141919810364364;
        for (auto usi:dp[x][y]) {
            ret = min(ret, k * k * usi.first + usi.second);
        }

        cout << ret << endl;
    }
    return 0;
}
0