結果

問題 No.867 避難経路
ユーザー pekempeypekempey
提出日時 2019-08-16 23:04:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,097 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 173,056 KB
実行使用メモリ 125,872 KB
最終ジャッジ日時 2024-09-22 21:27:00
合計ジャッジ時間 78,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
125,392 KB
testcase_01 AC 59 ms
125,472 KB
testcase_02 AC 43 ms
125,396 KB
testcase_03 AC 41 ms
125,416 KB
testcase_04 AC 42 ms
125,420 KB
testcase_05 AC 41 ms
125,536 KB
testcase_06 AC 41 ms
125,488 KB
testcase_07 AC 42 ms
125,588 KB
testcase_08 AC 43 ms
125,500 KB
testcase_09 AC 42 ms
125,408 KB
testcase_10 AC 42 ms
125,572 KB
testcase_11 AC 42 ms
125,464 KB
testcase_12 AC 43 ms
125,536 KB
testcase_13 AC 43 ms
125,448 KB
testcase_14 AC 41 ms
125,572 KB
testcase_15 AC 3,847 ms
125,668 KB
testcase_16 AC 3,812 ms
125,728 KB
testcase_17 AC 3,895 ms
125,656 KB
testcase_18 AC 3,886 ms
125,660 KB
testcase_19 AC 3,865 ms
125,796 KB
testcase_20 AC 3,819 ms
125,728 KB
testcase_21 AC 3,818 ms
125,788 KB
testcase_22 AC 3,824 ms
125,776 KB
testcase_23 AC 3,870 ms
125,704 KB
testcase_24 AC 3,794 ms
125,736 KB
testcase_25 AC 3,869 ms
125,732 KB
testcase_26 AC 3,891 ms
125,852 KB
testcase_27 AC 3,867 ms
125,804 KB
testcase_28 AC 3,892 ms
125,680 KB
testcase_29 AC 3,894 ms
125,684 KB
testcase_30 AC 1,049 ms
125,640 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,042 ms
125,752 KB
testcase_35 AC 1,003 ms
125,764 KB
testcase_36 AC 1,010 ms
125,700 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 42 ms
125,460 KB
testcase_42 AC 41 ms
125,384 KB
testcase_43 AC 41 ms
125,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (n); i++)
#define repr(i, n) for (int i = (n) - 1; i >= 0; i--)

using namespace std;
using ll = long long;

int dp[500][250][250];

constexpr int inf = 1e9;

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int H, W, GY, GX; cin >> H >> W >> GY >> GX;
  GY--; GX--;
  vector<vector<int>> A(H, vector<int>(W));
  rep(i, H) rep(j, W) cin >> A[i][j];
  rep(k, 500) rep(i, 250) rep(j, 250) dp[k][i][j] = inf;
  dp[0][GY][GX] = A[GY][GX];
  const int dy[] = {0, 1, 0, -1};
  const int dx[] = {1, 0, -1, 0};
  rep(k, 500-1) {
    rep(i, H) rep(j, W) {
      rep(l, 4) {
        int ni = i + dy[l];
        int nj = j + dx[l];
        if (0 <= ni && ni < H && 0 <= nj && nj < W) {
          dp[k+1][ni][nj] = min(dp[k+1][ni][nj], dp[k][i][j] + A[ni][nj]);
        }
      }
    }
  }
  int Q; cin >> Q;
  while (Q--) {
    int y, x;
    ll k; cin >> y >> x >> k; y--; x--;
    ll ans = 1e18;
    rep(i, 500) if (dp[i][y][x] != inf) {
      ans = min(ans, dp[i][y][x] + (i+1) * k * k);
    }

    cout << ans << '\n';
  }
}
0