結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー simansiman
提出日時 2022-05-31 15:33:09
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 3,000 ms
コード長 1,731 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 143,860 KB
実行使用メモリ 13,920 KB
最終ジャッジ日時 2024-09-21 01:18:17
合計ジャッジ時間 5,027 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 125 ms
5,760 KB
testcase_08 AC 111 ms
5,632 KB
testcase_09 AC 178 ms
13,920 KB
testcase_10 AC 179 ms
13,920 KB
testcase_11 AC 175 ms
13,776 KB
testcase_12 AC 148 ms
13,792 KB
testcase_13 AC 101 ms
13,656 KB
testcase_14 AC 112 ms
9,692 KB
testcase_15 AC 113 ms
9,564 KB
testcase_16 AC 47 ms
5,504 KB
testcase_17 AC 210 ms
9,820 KB
testcase_18 AC 47 ms
5,504 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 147 ms
9,604 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 68 ms
9,692 KB
testcase_25 AC 130 ms
5,632 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;

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

struct Node {
  int y;
  int x;
  ll value;

  Node(int y = -1, int x = -1, ll value = 0) {
    this->y = y;
    this->x = x;
    this->value = value;
  }

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

int main() {
  int H, W, Y, X;
  cin >> H >> W >> Y >> X;
  priority_queue <Node, vector<Node>, greater<Node>> pque;

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

  for (int dir = 0; dir < 4; ++dir) {
    int ny = (Y - 1) + DY[dir];
    int nx = (X - 1) + DX[dir];
    if (ny < 0 || nx < 0 || H <= ny || W <= nx) continue;

    pque.push(Node(ny, nx, A[ny][nx]));
  }

  ll power = A[Y - 1][X - 1];

  bool visited[H][W];
  memset(visited, false, sizeof(visited));
  visited[Y - 1][X - 1] = true;
  int cnt = 0;

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

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

    power += node.value;
    ++cnt;
    // fprintf(stderr, "power: %lld\n", power);

    for (int dir = 0; dir < 4; ++dir) {
      int ny = node.y + DY[dir];
      int nx = node.x + DX[dir];
      if (ny < 0 || nx < 0 || H <= ny || W <= nx) continue;

      pque.push(Node(ny, nx, A[ny][nx]));
    }
  }

  if (cnt == H * W - 1) {
    cout << "Yes" << endl;
  } else {
    cout << "No" << endl;
  }

  return 0;
}
0