結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー naskyanaskya
提出日時 2022-05-04 00:44:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 139 ms / 3,000 ms
コード長 1,113 bytes
コンパイル時間 957 ms
コンパイル使用メモリ 92,148 KB
実行使用メモリ 6,068 KB
最終ジャッジ日時 2024-07-02 23:47:02
合計ジャッジ時間 3,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 80 ms
5,376 KB
testcase_08 AC 111 ms
5,376 KB
testcase_09 AC 138 ms
5,376 KB
testcase_10 AC 136 ms
5,376 KB
testcase_11 AC 139 ms
5,376 KB
testcase_12 AC 109 ms
5,376 KB
testcase_13 AC 67 ms
5,376 KB
testcase_14 AC 99 ms
5,940 KB
testcase_15 AC 100 ms
5,936 KB
testcase_16 AC 48 ms
5,376 KB
testcase_17 AC 105 ms
6,068 KB
testcase_18 AC 48 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 89 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 54 ms
5,376 KB
testcase_25 AC 99 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <iterator>
#include <queue>
#include <tuple>
#include <vector>

int main() {
  int H, W, Y, X;
  std::cin >> H >> W >> Y >> X;

  --Y;
  --X;

  std::vector A(H, std::vector<int>(W));
  for (int i = 0; i < H; ++i) {
    std::copy_n(std::istream_iterator<int>(std::cin), W, A[i].begin());
  }

  long long S = A[Y][X];

  A[Y][X] = 0;

  std::priority_queue<std::tuple<int, int, int>> q;
  constexpr int dy[] {0, 1, 0, -1}, dx[] {1, 0, -1, 0};

  for (int i = 0; i < 4; ++i) {
    const int ny = Y + dy[i], nx = X + dx[i];
    if (0 <= ny && ny < H && 0 <= nx && nx < W) {
      q.emplace(-A[ny][nx], ny, nx);
      A[ny][nx] = 0;
    }
  }

  while (!q.empty()) {
    const auto [cs, cy, cx] = q.top();
    q.pop();

    if (S <= -cs) {
      std::cout << "No\n";
      return 0;
    }

    S += -cs;

    for (int i = 0; i < 4; ++i) {
      const int ny = cy + dy[i], nx = cx + dx[i];
      if (0 <= ny && ny < H && 0 <= nx && nx < W && A[ny][nx] != 0) {
        q.emplace(-A[ny][nx], ny, nx);
        A[ny][nx] = 0;
      }
    }
  }

  std::cout << "Yes\n";
}
0