結果

問題 No.867 避難経路
ユーザー vwxyzvwxyz
提出日時 2024-10-04 23:43:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,017 ms / 6,000 ms
コード長 2,136 bytes
コンパイル時間 1,495 ms
コンパイル使用メモリ 142,648 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-10-04 23:44:58
合計ジャッジ時間 80,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 4 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 4 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 2,758 ms
18,636 KB
testcase_16 AC 2,729 ms
18,560 KB
testcase_17 AC 2,799 ms
18,944 KB
testcase_18 AC 2,701 ms
18,792 KB
testcase_19 AC 2,703 ms
18,504 KB
testcase_20 AC 2,661 ms
15,696 KB
testcase_21 AC 2,624 ms
15,736 KB
testcase_22 AC 2,773 ms
17,040 KB
testcase_23 AC 2,810 ms
17,808 KB
testcase_24 AC 2,699 ms
17,344 KB
testcase_25 AC 2,773 ms
15,784 KB
testcase_26 AC 2,772 ms
15,956 KB
testcase_27 AC 2,754 ms
15,660 KB
testcase_28 AC 2,823 ms
15,972 KB
testcase_29 AC 3,017 ms
15,800 KB
testcase_30 AC 2,478 ms
15,708 KB
testcase_31 AC 2,476 ms
17,944 KB
testcase_32 AC 2,423 ms
16,192 KB
testcase_33 AC 2,465 ms
16,212 KB
testcase_34 AC 2,516 ms
15,704 KB
testcase_35 AC 2,621 ms
15,704 KB
testcase_36 AC 2,614 ms
15,720 KB
testcase_37 AC 2,469 ms
15,684 KB
testcase_38 AC 2,460 ms
15,820 KB
testcase_39 AC 2,442 ms
15,808 KB
testcase_40 AC 2,472 ms
15,820 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
#include <cmath>
#include <tuple> // タプルを使うために必要
using namespace std;

int main() {
    int H, W;
    cin >> H >> W;
    int gx, gy;
    cin >> gx >> gy;
    gx--; gy--;
    vector<vector<int>> A(H, vector<int>(W));
    for (int h = 0; h < H; ++h) {
        for (int w = 0; w < W; ++w) {
            cin >> A[h][w];
        }
    }
    int Q;
    cin >> Q;
    const int K = 251;
    vector<vector<tuple<int,int,int,int>>> query(K + 1);
    for (int q = 0; q < Q; ++q) {
        int x, y, k;
        cin >> x >> y >> k;
        x--; y--;
        // std::make_tupleを使ってタプルを作成
        query[min(k, K)].push_back(make_tuple(x, y, k, q));
    }
    vector<long long> ans_lst(Q);
    for (int k = 0; k <= K; ++k) {
        long long w = k < K ? k * k : (1 << 30);
        long long inf = (1LL << 60);
        vector<vector<long long>> dist(H, vector<long long>(W, inf));
        dist[gx][gy] = 0;
        priority_queue<tuple<long long, int, int>> queue;
        queue.push(make_tuple(-dist[gx][gy], gx, gy));
        while (!queue.empty()) {
            auto [d, x, y] = queue.top();
            queue.pop();
            d = -d;
            for (auto [dx, dy] : vector<pair<int, int>>{{0,1},{1,0},{0,-1},{-1,0}}) {
                int xx = x + dx, yy = y + dy;
                if (0 <= xx && xx < H && 0 <= yy && yy < W) {
                    long long dd = d + w + A[xx][yy];
                    if (dist[xx][yy] > dd) {
                        dist[xx][yy] = dd;
                        queue.push(make_tuple(-dd, xx, yy));
                    }
                }
            }
        }
        for (auto [x, y, c, q] : query[k]) {
            if (k < K) {
                ans_lst[q] = dist[x][y] + c * c + A[gx][gy];
            } else {
                long long cnt = dist[x][y] / w;
                long long d = dist[x][y] % w;
                ans_lst[q] = (cnt + 1) * c * c + d + A[gx][gy];
            }
        }
    }
    for (int i = 0; i < Q; ++i) {
        cout << ans_lst[i] << endl;
    }
    return 0;
}
0