結果

問題 No.34 砂漠の行商人
ユーザー pessimistpessimist
提出日時 2024-10-24 02:22:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 734 ms / 5,000 ms
コード長 1,123 bytes
コンパイル時間 2,705 ms
コンパイル使用メモリ 222,528 KB
実行使用メモリ 93,184 KB
最終ジャッジ日時 2024-10-24 02:22:18
合計ジャッジ時間 6,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 14 ms
6,816 KB
testcase_05 AC 19 ms
7,424 KB
testcase_06 AC 4 ms
6,816 KB
testcase_07 AC 35 ms
10,496 KB
testcase_08 AC 55 ms
14,080 KB
testcase_09 AC 194 ms
34,432 KB
testcase_10 AC 73 ms
15,616 KB
testcase_11 AC 46 ms
15,616 KB
testcase_12 AC 15 ms
6,820 KB
testcase_13 AC 734 ms
93,184 KB
testcase_14 AC 500 ms
72,576 KB
testcase_15 AC 35 ms
10,624 KB
testcase_16 AC 27 ms
8,832 KB
testcase_17 AC 89 ms
19,328 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 195 ms
36,864 KB
testcase_20 AC 268 ms
48,640 KB
testcase_21 AC 4 ms
6,816 KB
testcase_22 AC 125 ms
26,112 KB
testcase_23 AC 59 ms
13,696 KB
testcase_24 AC 299 ms
50,432 KB
testcase_25 AC 55 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int INF = 1E9;
int arr[2<<6][2<<6];
const static int dirs[] = {0, 1, 0, -1, 0};
int main(){
  cin.tie(nullptr)->sync_with_stdio(false);
  int N, V, Sx, Sy, Gx, Gy;
  cin >> N >> V >> Sx >> Sy >> Gx >> Gy;
  --Sx, --Sy; --Gx; --Gy;
  for(int i = 0; i < N; ++i){
    for(int j = 0; j < N; ++j){
      cin >> arr[i][j];
    }
  }

  vector dist(N, vector<map<int, int>>(N));
  queue<tuple<int, int, int, int>> q;
  q.emplace(Sx, Sy, V, 0);
  dist[Sx][Sy][V]=0;
  while(!q.empty()){
    auto [x, y, v, d] = q.front();
    q.pop();
    for(int k = 0; k < 4; ++k){
      const int nx = x + dirs[k];
      const int ny = y + dirs[k + 1];
      if(nx < 0 || ny < 0 || nx >= N || ny >= N) continue;
      int v2 = v - arr[ny][nx];
      if(v2 <= 0) continue;
      if(!dist[nx][ny].empty() && dist[nx][ny].rbegin()->first >= v2) continue;
      dist[nx][ny][v2] = d + 1;
      q.emplace(nx, ny, v2, d + 1);
    }
  }
  int ret = INF;
  for(auto& [k, v]: dist[Gx][Gy]){
    ret = min(ret, v);
  }
  if(ret == INF) ret = -1;
  cout << ret << endl;
  return 0;
}
0