結果

問題 No.867 避難経路
ユーザー betrue12betrue12
提出日時 2019-08-16 23:12:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,448 ms / 6,000 ms
コード長 2,595 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 186,328 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-09-22 21:57:43
合計ジャッジ時間 59,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 1,253 ms
38,528 KB
testcase_16 AC 1,206 ms
38,272 KB
testcase_17 AC 1,252 ms
38,400 KB
testcase_18 AC 1,205 ms
38,400 KB
testcase_19 AC 1,193 ms
38,272 KB
testcase_20 AC 537 ms
35,932 KB
testcase_21 AC 514 ms
35,800 KB
testcase_22 AC 573 ms
35,776 KB
testcase_23 AC 604 ms
35,792 KB
testcase_24 AC 577 ms
35,940 KB
testcase_25 AC 830 ms
39,424 KB
testcase_26 AC 816 ms
39,424 KB
testcase_27 AC 876 ms
39,168 KB
testcase_28 AC 854 ms
39,552 KB
testcase_29 AC 854 ms
39,552 KB
testcase_30 AC 3,149 ms
78,592 KB
testcase_31 AC 3,174 ms
39,040 KB
testcase_32 AC 3,154 ms
38,912 KB
testcase_33 AC 3,176 ms
39,168 KB
testcase_34 AC 3,250 ms
78,720 KB
testcase_35 AC 3,448 ms
78,720 KB
testcase_36 AC 3,432 ms
78,720 KB
testcase_37 AC 3,228 ms
78,720 KB
testcase_38 AC 3,210 ms
78,720 KB
testcase_39 AC 3,178 ms
78,720 KB
testcase_40 AC 3,139 ms
78,720 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int H, W, gx, gy;
bool inside(int i, int j){
    return i>=0 && i<H && j>=0 && j<W;
}
const int dx[] = {-1, 1, 0, 0};
const int dy[] = {0, 0, -1, 1};

int main(){
    cin >> H >> W >> gx >> gy;
    gx--; gy--;
    int A[250][250];
    for(int i=0; i<H; i++) for(int j=0; j<W; j++) cin >> A[i][j];

    int64_t mins[250][250];
    const int64_t OFFSET = 1e12;
    for(int i=0; i<H; i++) for(int j=0; j<W; j++) mins[i][j] = 1e18;
    mins[gx][gy] = OFFSET + A[gx][gy];
    typedef pair<int64_t, pair<int, int>> PP;
    priority_queue<PP, vector<PP>, greater<PP>> que;
    que.push({mins[gx][gy], {gx, gy}});
    while(que.size()){
        auto p = que.top(); que.pop();
        int64_t d = p.first;
        int i = p.second.first, j = p.second.second;
        if(d > mins[i][j]) continue;
        for(int k=0; k<4; k++){
            int x = i+dx[k], y = j+dy[k];
            if(inside(x, y) && mins[x][y] > d + OFFSET + A[x][y]){
                mins[x][y] = d + OFFSET + A[x][y];
                que.push({mins[x][y], {x, y}});
            }
        }
    }

    int Q;
    cin >> Q;
    map<int, vector<vector<int>>> qs;
    for(int i=0; i<Q; i++){
        int x, y, k;
        cin >> x >> y >> k;
        qs[k].push_back({i, x-1, y-1});
    }
    vector<int64_t> ans(Q);
    int64_t dist[250][250];
    for(auto& q : qs){
        int64_t K = q.first;
        int64_t K2 = K*K;
        if(K <= 500){
            for(int i=0; i<H; i++) for(int j=0; j<W; j++) dist[i][j] = 1e18;
            dist[gx][gy] = K2 + A[gx][gy];
            priority_queue<PP, vector<PP>, greater<PP>> que;
            que.push({dist[gx][gy], {gx, gy}});
            while(que.size()){
                auto p = que.top(); que.pop();
                int64_t d = p.first;
                int i = p.second.first, j = p.second.second;
                if(d > dist[i][j]) continue;
                for(int k=0; k<4; k++){
                    int x = i+dx[k], y = j+dy[k];
                    if(inside(x, y) && dist[x][y] > d + K2 + A[x][y]){
                        dist[x][y] = d + K2 + A[x][y];
                        que.push({dist[x][y], {x, y}});
                    }
                }
            }
            for(auto& v : q.second){
                ans[v[0]] = dist[v[1]][v[2]];
            }
        }else{
            for(auto& v : q.second){
                int i = v[1], j = v[2];
                ans[v[0]] = mins[i][j] - (OFFSET - K2) * (abs(i-gx) + abs(j-gy) + 1);
            }
        }
    }
    for(int i=0; i<Q; i++) cout << ans[i] << "\n";
    return 0;
}
0