結果

問題 No.34 砂漠の行商人
ユーザー togatogatogatoga
提出日時 2015-09-12 14:51:09
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2,563 ms / 5,000 ms
コード長 2,016 bytes
コンパイル時間 2,462 ms
コンパイル使用メモリ 166,408 KB
実行使用メモリ 397,096 KB
最終ジャッジ日時 2024-06-28 10:24:12
合計ジャッジ時間 20,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
394,880 KB
testcase_01 AC 302 ms
395,008 KB
testcase_02 AC 303 ms
394,976 KB
testcase_03 AC 300 ms
394,964 KB
testcase_04 AC 318 ms
395,244 KB
testcase_05 AC 319 ms
395,392 KB
testcase_06 AC 303 ms
395,136 KB
testcase_07 AC 328 ms
395,520 KB
testcase_08 AC 344 ms
395,600 KB
testcase_09 AC 938 ms
396,764 KB
testcase_10 AC 350 ms
395,776 KB
testcase_11 AC 2,182 ms
397,096 KB
testcase_12 AC 313 ms
395,392 KB
testcase_13 AC 2,563 ms
397,096 KB
testcase_14 AC 2,023 ms
396,948 KB
testcase_15 AC 306 ms
395,264 KB
testcase_16 AC 383 ms
395,364 KB
testcase_17 AC 301 ms
395,256 KB
testcase_18 AC 309 ms
395,136 KB
testcase_19 AC 795 ms
397,052 KB
testcase_20 AC 1,223 ms
396,944 KB
testcase_21 AC 305 ms
395,520 KB
testcase_22 AC 312 ms
395,648 KB
testcase_23 AC 302 ms
395,264 KB
testcase_24 AC 1,562 ms
396,924 KB
testcase_25 AC 344 ms
395,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;


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

struct Edge{
  int node,cost;
  Edge(int node, int cost):node(node),cost(cost){
  }
};

struct State{
  int hp,node;
  int cost;
  State(int node, int hp, int cost):hp(hp),node(node),cost(cost){}
  bool operator < (const State& right) const {
    return cost > right.cost;
  }
};

int N,V,sx,sy,gx,gy;
int board[110][110];
int cost[10010][10010];
vector<Edge> Edges[10010];
int main(){
  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];
    }
  }
  for (int i = 0; i < N; i++){
    for (int j = 0; j < N; j++){
      int ny,nx;
      int node = i * N + j;
      for (int k = 0; k < 4; k++){
	ny = i + dy[k];
	nx = j + dx[k];
	if (ny < 0 or nx < 0 or ny >= N or nx >= N)continue;
	int next_node = ny * N + nx;
	int cost = board[ny][nx];
	Edges[node].push_back(Edge(next_node, cost));
      }
    }
  }
  priority_queue<State> que;
  que.push(State(sy * N + sx, V, false));
  for (int i = 0; i < 10010; i++){
    for (int j = 0; j < 10000; j++){
      cost[i][j] = 1LL << 30;
    }
  }
  cost[sy * N + sx][V] = 0;
  long long ans = 1LL << 40;
  while (!que.empty()){
    State pos = que.top();
    que.pop();
    //cout << pos.node << " " << pos.hp << endl;
    if (cost[pos.node][pos.hp] > pos.cost or ans < pos.cost){
      continue;
    }
    if (pos.node == gy * N + gx){
      ans = min(ans, (long long)pos.cost);
      continue;
    }
    for (int i = 0; i < Edges[pos.node].size(); i++){
      Edge np = Edges[pos.node][i];
      if (pos.hp - np.cost > 0){
	if (cost[np.node][pos.hp - np.cost] > cost[pos.node][pos.hp] + 1){
	  cost[np.node][pos.hp - np.cost] = cost[pos.node][pos.hp] + 1;
	  que.push(State(np.node, pos.hp - np.cost, cost[np.node][pos.hp - np.cost]));
	}
      }
    }
  }
  if (ans == 1LL << 40){
    cout << -1 << endl;
    return 0;
  }
  cout << ans << endl;
  return 0;
}
0