結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-29 15:18:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 3,000 ms
コード長 1,251 bytes
コンパイル時間 2,253 ms
コンパイル使用メモリ 215,148 KB
実行使用メモリ 9,100 KB
最終ジャッジ日時 2024-07-06 06:08:51
合計ジャッジ時間 5,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 82 ms
6,940 KB
testcase_08 AC 109 ms
6,940 KB
testcase_09 AC 129 ms
6,940 KB
testcase_10 AC 134 ms
6,940 KB
testcase_11 AC 136 ms
6,940 KB
testcase_12 AC 107 ms
6,944 KB
testcase_13 AC 67 ms
6,940 KB
testcase_14 AC 103 ms
8,464 KB
testcase_15 AC 104 ms
9,100 KB
testcase_16 AC 47 ms
6,940 KB
testcase_17 AC 109 ms
8,460 KB
testcase_18 AC 46 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 87 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 53 ms
6,944 KB
testcase_25 AC 98 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

template<typename T> using pq = priority_queue<T, vector<T>, greater<T>>;

int main(){

    int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1};
    ll H, W, Y, X, cnt=1, now, h, w, nh, nw, e;
    cin >> H >> W >> Y >> X;
    vector<vector<ll>> A(H+1, vector<ll>(W+1));
    pq<tuple<ll, ll, ll>> que;

    for (int i=1; i<=H; i++){
        for (int j=1; j<=W; j++) cin >> A[i][j];
    }

    now = A[Y][X];
    A[Y][X] = 0;
    h = Y; w = X;
    for (int i=0; i<4; i++){
        nh = h+dx[i]; nw = w+dy[i];
        if (nh == 0 || nw == 0 || nh == H+1 || nw == W+1) continue;
        que.push({A[nh][nw], nh, nw});
        A[nh][nw] = 0;
    }

    while(!que.empty()){
        tie(e, h, w) = que.top();
        que.pop();
        if (e >= now){
            cout << "No" << endl;
            return 0;
        }
        now += e;
        cnt++;
        for (int i=0; i<4; i++){
            nh = h+dx[i]; nw = w+dy[i];
            if (nh == 0 || nw == 0 || nh == H+1 || nw == W+1) continue;
            if (A[nh][nw] == 0) continue;
            que.push({A[nh][nw], nh, nw});
            A[nh][nw] = 0;
        }
    }

    cout << (cnt == H*W ? "Yes" : "No") << endl;

    return 0;
}
0