結果

問題 No.34 砂漠の行商人
ユーザー yuppe19 😺yuppe19 😺
提出日時 2017-09-18 14:04:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,750 ms / 5,000 ms
コード長 1,722 bytes
コンパイル時間 884 ms
コンパイル使用メモリ 86,456 KB
実行使用メモリ 408,576 KB
最終ジャッジ日時 2024-06-28 10:37:43
合計ジャッジ時間 8,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 12 ms
5,760 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 19 ms
6,912 KB
testcase_08 AC 26 ms
8,832 KB
testcase_09 AC 544 ms
237,440 KB
testcase_10 AC 370 ms
407,424 KB
testcase_11 AC 1,750 ms
408,576 KB
testcase_12 AC 9 ms
5,376 KB
testcase_13 AC 1,449 ms
106,112 KB
testcase_14 AC 1,033 ms
102,144 KB
testcase_15 AC 35 ms
44,544 KB
testcase_16 AC 106 ms
84,352 KB
testcase_17 AC 25 ms
32,000 KB
testcase_18 AC 9 ms
9,728 KB
testcase_19 AC 215 ms
25,216 KB
testcase_20 AC 422 ms
41,088 KB
testcase_21 AC 7 ms
6,528 KB
testcase_22 AC 36 ms
40,448 KB
testcase_23 AC 96 ms
119,552 KB
testcase_24 AC 861 ms
214,144 KB
testcase_25 AC 27 ms
10,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |   int N, V, sr, sc, gr, gc; scanf("%d%d%d%d%d%d", &N, &V, &sc, &sr, &gc, &gr);
      |                             ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:20:12: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |       scanf("%d", &G[r][c]);
      |       ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <queue>
#include <tuple>
using namespace std;
using i64 = long long;

constexpr int inf = 987654321;
                            // N  E  S  W
constexpr array<int, 4> dr = {-1, 0, 1, 0},
                        dc = { 0, 1, 0,-1};
constexpr int dr_size = dr.size();

int main(void) {
  int N, V, sr, sc, gr, gc; scanf("%d%d%d%d%d%d", &N, &V, &sc, &sr, &gc, &gr);
  --sr, --sc, --gr, --gc;
  vector<vector<int>> G(N, vector<int>(N, 0)); // G[N][N]
  for(int r=0; r<N; ++r) {
    for(int c=0; c<N; ++c) {
      scanf("%d", &G[r][c]);
    }
  }
  queue<tuple<int, int, int>> que;
  // 座標, 残りHP
  que.emplace(sr, sc, V);
  // cost[座標][残りHP] := 時間
  vector<vector<vector<int>>> cost(N, vector<vector<int>>(N, vector<int>(V+1, inf))); // cost[N][N][V+1]
  cost[sr][sc][V] = 0;
  vector<vector<vector<bool>>> inque(N, vector<vector<bool>>(N, vector<bool>(V+1, false))); // inque[N][N][V+1]
  inque[sr][sc][V] = true;
  while(!que.empty()) {
    int r, c, v; tie(r, c, v) = que.front(); que.pop();
    inque[r][c][v] = false;
    if(r == gr && c == gc) { break; }
    for(int i=0; i<dr_size; ++i) {
      int nr = r + dr[i],
          nc = c + dc[i];
      if(!(0 <= nr && nr < N && 0 <= nc && nc < N)) { continue; }
      int nv = v - G[nr][nc];
      if(nv <= 0) { continue; }
      if(cost[nr][nc][nv] > cost[r][c][v] + 1) {
        cost[nr][nc][nv] = cost[r][c][v] + 1;
        if(!inque[nr][nc][nv]) {
          inque[nr][nc][nv] = true;
          que.emplace(nr, nc, nv);
        }
      }
    }
  }
  int res = inf;
  for(int v=1; v<=V; ++v) {
    res = min(res, cost[gr][gc][v]);
  }
  if(res == inf) { res = -1; }
  printf("%d\n", res);
  return 0;
}
0