結果

問題 No.2328 Build Walls
ユーザー simansiman
提出日時 2023-05-31 15:52:48
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 555 ms / 3,000 ms
コード長 1,533 bytes
コンパイル時間 3,765 ms
コンパイル使用メモリ 142,068 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-06-08 21:05:34
合計ジャッジ時間 9,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 67 ms
5,376 KB
testcase_14 AC 171 ms
5,376 KB
testcase_15 AC 99 ms
5,376 KB
testcase_16 AC 17 ms
5,376 KB
testcase_17 AC 85 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 10 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 60 ms
5,376 KB
testcase_22 AC 279 ms
5,376 KB
testcase_23 AC 392 ms
6,656 KB
testcase_24 AC 347 ms
6,528 KB
testcase_25 AC 386 ms
6,656 KB
testcase_26 AC 262 ms
6,656 KB
testcase_27 AC 324 ms
6,656 KB
testcase_28 AC 116 ms
6,528 KB
testcase_29 AC 396 ms
6,784 KB
testcase_30 AC 127 ms
6,656 KB
testcase_31 AC 125 ms
6,656 KB
testcase_32 AC 317 ms
6,656 KB
testcase_33 AC 555 ms
6,912 KB
testcase_34 AC 130 ms
6,656 KB
testcase_35 AC 417 ms
6,784 KB
testcase_36 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

struct Node {
  int y;
  int x;
  int cost;

  Node(int y = -1, int x = 1, int cost = -1) {
    this->y = y;
    this->x = x;
    this->cost = cost;
  }

  bool operator>(const Node &n) const {
    return cost > n.cost;
  }
};

int main() {
  int H, W;
  cin >> H >> W;

  int A[H][W];
  memset(A, -1, sizeof(A));

  for (int y = 1; y <= H - 2; ++y) {
    for (int x = 0; x < W; ++x) {
      cin >> A[y][x];
    }
  }

  priority_queue <Node, vector<Node>, greater<Node>> pque;
  for (int y = 1; y <= H - 2; ++y) {
    if (A[y][0] == -1) continue;

    pque.push(Node(y, 0, A[y][0]));
  }

  bool visited[H][W];
  memset(visited, false, sizeof(visited));

  int DY[8] = {-1, -1, -1, 0, 0, 1, 1, 1};
  int DX[8] = {-1, 0, 1, -1, 1, -1, 0, 1};

  while (not pque.empty()) {
    Node node = pque.top();
    pque.pop();

    if (visited[node.y][node.x]) continue;
    visited[node.y][node.x] = true;

    if (node.x == W - 1) {
      cout << node.cost << endl;
      return 0;
    }

    for (int dir = 0; dir < 8; ++dir) {
      int ny = node.y + DY[dir];
      int nx = node.x + DX[dir];
      if (ny < 0 || nx < 0) continue;
      if (A[ny][nx] == -1) continue;

      int ncost = node.cost + A[ny][nx];
      pque.push(Node(ny, nx, ncost));
    }
  }

  cout << -1 << endl;

  return 0;
}
0