結果

問題 No.34 砂漠の行商人
ユーザー oxyshoweroxyshower
提出日時 2019-02-28 13:55:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 859 ms / 5,000 ms
コード長 1,206 bytes
コンパイル時間 1,755 ms
コンパイル使用メモリ 174,340 KB
実行使用メモリ 162,448 KB
最終ジャッジ日時 2024-06-23 11:39:24
合計ジャッジ時間 6,822 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
7,528 KB
testcase_02 AC 8 ms
24,652 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 20 ms
16,512 KB
testcase_05 AC 24 ms
20,352 KB
testcase_06 AC 9 ms
11,392 KB
testcase_07 AC 37 ms
28,928 KB
testcase_08 AC 47 ms
40,192 KB
testcase_09 AC 245 ms
100,712 KB
testcase_10 AC 58 ms
160,040 KB
testcase_11 AC 480 ms
161,884 KB
testcase_12 AC 23 ms
32,476 KB
testcase_13 AC 859 ms
162,448 KB
testcase_14 AC 611 ms
156,736 KB
testcase_15 AC 23 ms
58,024 KB
testcase_16 AC 51 ms
46,720 KB
testcase_17 AC 29 ms
87,188 KB
testcase_18 AC 12 ms
26,604 KB
testcase_19 AC 188 ms
88,348 KB
testcase_20 AC 315 ms
116,980 KB
testcase_21 AC 34 ms
59,484 KB
testcase_22 AC 39 ms
112,432 KB
testcase_23 AC 26 ms
71,576 KB
testcase_24 AC 410 ms
148,212 KB
testcase_25 AC 43 ms
49,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long

int dx[]{1,0,-1,0},dy[]{0,1,0,-1};
int board[100][100];
int dp[100][100][2001]; //{y,x,HP} = 移動回数

signed main(){
  cin.tie(0);
  ios::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 >> board[i][j];
    }
  }

  V = min(V,2000LL);
  for(int i = 0; i < N; i++){
    for(int j = 0; j < N; j++){
      fill(dp[i][j],dp[i][j]+V+1,-1);
    }
  }
  dp[Sy][Sx][V] = 0;
  queue< tuple<int,int,int> > q;
  q.push({Sy,Sx,V});
  while(!q.empty()){
    auto p = q.front(); q.pop();
    int y = get<0>(p);
    int x = get<1>(p);
    int v = get<2>(p);
    for(int i = 0; i < 4; i++){
      int ny = y + dy[i];
      int nx = x + dx[i];
      if(ny < 0 || N <= ny || nx < 0 || N <= nx) continue;
      int nv = v - board[ny][nx];
      if(nv <= 0) continue;
      if(dp[ny][nx][nv] != -1) continue;
      dp[ny][nx][nv] = dp[y][x][v] + 1;
      if(ny == Gy && nx == Gx){
        cout << dp[ny][nx][nv] << endl;
        return 0;
      }
      q.push({ny,nx,nv});
    }
  }
  cout << -1 << endl;

  return 0;
}
0