結果

問題 No.867 避難経路
ユーザー lumc_lumc_
提出日時 2019-08-17 06:23:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,145 ms / 6,000 ms
コード長 2,053 bytes
コンパイル時間 1,265 ms
コンパイル使用メモリ 114,648 KB
実行使用メモリ 113,148 KB
最終ジャッジ日時 2024-09-24 18:44:17
合計ジャッジ時間 38,288 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,192 KB
testcase_01 AC 6 ms
8,192 KB
testcase_02 AC 6 ms
8,192 KB
testcase_03 AC 6 ms
8,320 KB
testcase_04 AC 6 ms
8,320 KB
testcase_05 AC 6 ms
8,192 KB
testcase_06 AC 6 ms
8,192 KB
testcase_07 AC 5 ms
8,064 KB
testcase_08 AC 6 ms
8,192 KB
testcase_09 AC 6 ms
8,320 KB
testcase_10 AC 6 ms
8,320 KB
testcase_11 AC 6 ms
8,320 KB
testcase_12 AC 6 ms
8,192 KB
testcase_13 AC 6 ms
8,320 KB
testcase_14 AC 6 ms
8,192 KB
testcase_15 AC 1,132 ms
112,324 KB
testcase_16 AC 1,145 ms
112,864 KB
testcase_17 AC 1,111 ms
112,900 KB
testcase_18 AC 1,054 ms
112,920 KB
testcase_19 AC 1,058 ms
113,148 KB
testcase_20 AC 1,034 ms
112,896 KB
testcase_21 AC 1,004 ms
112,896 KB
testcase_22 AC 1,028 ms
112,932 KB
testcase_23 AC 1,072 ms
112,412 KB
testcase_24 AC 1,040 ms
112,652 KB
testcase_25 AC 1,008 ms
112,748 KB
testcase_26 AC 1,029 ms
112,568 KB
testcase_27 AC 1,044 ms
112,956 KB
testcase_28 AC 1,066 ms
112,696 KB
testcase_29 AC 1,128 ms
112,956 KB
testcase_30 AC 839 ms
112,880 KB
testcase_31 AC 868 ms
112,892 KB
testcase_32 AC 858 ms
113,108 KB
testcase_33 AC 861 ms
112,852 KB
testcase_34 AC 891 ms
112,976 KB
testcase_35 AC 941 ms
112,532 KB
testcase_36 AC 908 ms
112,764 KB
testcase_37 AC 870 ms
111,288 KB
testcase_38 AC 865 ms
111,136 KB
testcase_39 AC 849 ms
111,192 KB
testcase_40 AC 844 ms
111,176 KB
testcase_41 AC 17 ms
53,996 KB
testcase_42 AC 17 ms
54,520 KB
testcase_43 AC 17 ms
54,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// includes {{{
#include<iostream>
#include<iomanip>
#include<algorithm>
#include<vector>
#include<stack>
#include<queue>
#include<map>
#include<set>
#include<tuple>
#include<cmath>
#include<random>
#include<cassert>
#include<bitset>
#include<cstdlib>
// #include<deque>
// #include<multiset>
// #include<cstring>
// #include<bits/stdc++.h>
// }}}
using namespace std;
using ll = long long;

// 右下にゴールがあるとする
// 右下に向かわなかった場合,2 * k^2 の損をする
// 得の最大値は 98 * 248 = 24304 = M
// M < 2 * k^2 <=> k >= 111 = K

// 最短路
// N^2 * log(N^2) * K

int h, w;
int gx, gy;
ll A[250][250];
int q;

constexpr int K = 111;
constexpr ll inf = 1e18;
ll dist[K+1][250][250];
ll steps[K+1][250][250];

int dx[] = {1, 0, -1, 0};
int dy[] = {0, 1, 0, -1};

int main() {
  std::ios::sync_with_stdio(false), std::cin.tie(0);
  cin >> h >> w;
  cin >> gx >> gy;
  gx--, gy--;
  for(int i = 0; i < h; i++) for(int j = 0; j < w; j++) cin >> A[i][j];
  for(int k = 1; k <= K; k++) {
    for(int i = 0; i < h; i++) for(int j = 0; j < w; j++) dist[k][i][j] = inf;
    using P = tuple<ll, int, int, int>;
    priority_queue<P, vector<P>, greater<P>> pq;
    dist[k][gx][gy] = k * k + A[gx][gy];
    steps[k][gx][gy] = 1;
    pq.emplace(dist[k][gx][gy], gx, gy, 1);
    while(pq.size()) {
      ll d; int x, y, s;
      tie(d, x, y, s) = pq.top();
      pq.pop();
      if(dist[k][x][y] < d) continue;
      for(int dir = 0; dir < 4; dir++) {
        int nx = x + dx[dir];
        int ny = y + dy[dir];
        if(0 <= nx and nx < h and 0 <= ny and ny < w); else continue;
        ll nd = d + k * k + A[nx][ny];
        if(nd < dist[k][nx][ny]) {
          dist[k][nx][ny] = nd;
          steps[k][nx][ny] = s + 1;
          pq.emplace(nd, nx, ny, s + 1);
        }
      }
    }
  }
  cin >> q;
  for(int i = 0; i < q; i++) {
    ll x, y, k;
    cin >> x >> y >> k;
    x--, y--;
    ll r = min<ll>(K, k);
    ll ans = dist[r][x][y] + (k * k - r * r) * steps[r][x][y];
    cout << ans << "\n";
  }
  return 0;
}
0