結果

問題 No.867 避難経路
ユーザー parukiparuki
提出日時 2019-08-17 17:58:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,562 ms / 6,000 ms
コード長 2,561 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 188,344 KB
実行使用メモリ 19,996 KB
最終ジャッジ日時 2024-09-24 19:12:06
合計ジャッジ時間 77,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 2,309 ms
19,648 KB
testcase_16 AC 2,289 ms
19,804 KB
testcase_17 AC 2,370 ms
19,876 KB
testcase_18 AC 2,345 ms
19,996 KB
testcase_19 AC 2,269 ms
19,912 KB
testcase_20 AC 1,043 ms
17,516 KB
testcase_21 AC 914 ms
17,528 KB
testcase_22 AC 925 ms
18,680 KB
testcase_23 AC 933 ms
18,256 KB
testcase_24 AC 892 ms
18,316 KB
testcase_25 AC 1,017 ms
17,656 KB
testcase_26 AC 1,009 ms
17,532 KB
testcase_27 AC 1,031 ms
17,524 KB
testcase_28 AC 1,003 ms
17,528 KB
testcase_29 AC 1,053 ms
17,524 KB
testcase_30 AC 3,881 ms
17,508 KB
testcase_31 AC 4,562 ms
18,256 KB
testcase_32 AC 4,287 ms
17,976 KB
testcase_33 AC 4,184 ms
17,988 KB
testcase_34 AC 4,075 ms
17,500 KB
testcase_35 AC 4,329 ms
17,500 KB
testcase_36 AC 4,324 ms
17,500 KB
testcase_37 AC 4,090 ms
17,296 KB
testcase_38 AC 4,025 ms
17,332 KB
testcase_39 AC 4,004 ms
17,328 KB
testcase_40 AC 3,953 ms
17,340 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 #

#define _USE_MATH_DEFINES
#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define MT make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
#define RT return
using ll = long long;
using pii = pair<int, int>;
using vi = vector<int>;
using vll = vector<ll>;

template<class Val>
vector<vector<Val> > dijkstraGrid(vector<vector<Val>> grid, int sy, int sx) {
    const int h = (int)grid.size();
    const int w = (int)grid[0].size();
    static const int DIR[] = { 0,-1,0,1,0 };
    vector<vector<Val> > res(h, vector<Val>(w, -1));
    priority_queue<tuple<Val, int, int> > Q;
    Q.push({ -grid[sy][sx], sy, sx });
    while (!Q.empty()) {
        Val negaDis;
        int y, x;
        tie(negaDis, y, x) = Q.top();
        Q.pop();
        if (res[y][x] >= 0)continue;
        res[y][x] = -negaDis;
        rep(i, 4) {
            int ny = y + DIR[i];
            int nx = x + DIR[i + 1];
            if (ny >= 0 && ny < h && nx >= 0 && nx < w && res[ny][nx] < 0) {
                Q.push({ negaDis - grid[ny][nx],ny,nx });
            }
        }
    }
    return res;
}

struct Query {
    int id, k, y, x;
};

void solve() {
    int H, W;
    cin >> H >> W;
    int gy, gx;
    cin >> gy >> gx;
    --gy;
    --gx;
    vector<vll> A(H, vll(W));
    rep(y, H) {
        rep(x, W)cin >> A[y][x];
    }

    const int LIM = 250;
    int Q;
    cin >> Q;
    vector<Query> qs[LIM];
    rep(i, Q) {
        int y, x, k;
        cin >> y >> x >> k;
        qs[k < LIM ? k : 0].push_back(Query{ i,k,--y,--x });
    }

    const int MOD = LIM * LIM;
    vll ans(Q);
    vector<vll> B = A;
    rep(y, H)rep(x, W)B[y][x] += MOD;
    auto dis = dijkstraGrid(B, gy, gx);
    each(q, qs[0]) {
        ll z = dis[q.y][q.x];
        ll kCnt = z / MOD;
        ll aSum = z % MOD;
        ans[q.id] = kCnt * q.k * q.k + aSum;
    }

    FOR(i, 1, LIM) {
        if (qs[i].empty())continue;
        rep(y, H)rep(x, W) {
            B[y][x] = i * i + A[y][x];
        }
        dis = dijkstraGrid(B, gy, gx);
        each(q, qs[i]) {
            ans[q.id] = dis[q.y][q.x];
        }
    }

    each(a, ans) {
        cout << a << endl;
    }
}

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout << fixed << setprecision(15);
	solve();
	return 0;
}
0