結果

問題 No.1949 足し算するだけのパズルゲーム(2)
ユーザー kokatsukokatsu
提出日時 2022-10-25 00:33:18
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 195 ms / 3,000 ms
コード長 1,110 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 222,428 KB
実行使用メモリ 16,788 KB
最終ジャッジ日時 2024-06-22 16:30:07
合計ジャッジ時間 5,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 121 ms
11,132 KB
testcase_08 AC 57 ms
13,472 KB
testcase_09 AC 159 ms
16,532 KB
testcase_10 AC 157 ms
16,788 KB
testcase_11 AC 150 ms
14,648 KB
testcase_12 AC 140 ms
14,012 KB
testcase_13 AC 128 ms
13,376 KB
testcase_14 AC 123 ms
16,088 KB
testcase_15 AC 121 ms
16,764 KB
testcase_16 AC 25 ms
11,904 KB
testcase_17 AC 195 ms
13,720 KB
testcase_18 AC 24 ms
12,164 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 144 ms
14,112 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 74 ms
12,216 KB
testcase_25 AC 126 ms
11,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

struct Square {
    long y, x, a;
}

void main() {
    long H, W, Y, X;
    readf("%d %d %d %d\n", H, W, Y, X);

    auto A = new long[][](H);
    foreach (i; 0 .. H) A[i] = readln.chomp.split.to!(long[]);

    --Y, --X;

    long[] dy = [-1, 0, 1, 0], dx = [0, 1, 0, -1];

    auto seen = new bool[][](H, W);
    seen[Y][X] = true;

    long S = A[Y][X];

    auto heap = new BinaryHeap!(Array!Square, "a.a > b.a")();
    foreach (i; 0 .. 4) {
        long ny = Y + dy[i], nx = X + dx[i];
        if (0 <= ny && ny < H && 0 <= nx && nx < W) {
            heap.insert(Square(ny, nx, A[ny][nx]));
            seen[ny][nx] = true;
        }
    }

    while (!heap.empty) {
        auto f = heap.front;

        if (S <= f.a) break;

        heap.popFront;
        S += f.a;

        foreach (i; 0 .. 4) {
            long ny = f.y + dy[i], nx = f.x + dx[i];
            if (0 <= ny && ny < H && 0 <= nx && nx < W && !seen[ny][nx]) {
                heap.insert(Square(ny, nx, A[ny][nx]));
                seen[ny][nx] = true;
            }
        }
    }

    writeln(heap.empty ? "Yes" : "No");
}
0