結果

問題 No.2928 Gridpath
ユーザー InTheBloomInTheBloom
提出日時 2024-10-12 17:00:12
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 920 ms / 2,000 ms
コード長 2,686 bytes
コンパイル時間 4,331 ms
コンパイル使用メモリ 173,184 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 17:01:52
合計ジャッジ時間 9,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 920 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 20 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 22 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 393 ms
5,248 KB
testcase_16 AC 429 ms
5,248 KB
testcase_17 AC 380 ms
5,248 KB
testcase_18 AC 680 ms
5,248 KB
testcase_19 AC 390 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 908 ms
5,248 KB
testcase_22 AC 450 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    // 逆を考える。
    // 任意の移動経路について、パスになってさえいればそれが最短になるような配置が存在するかもしれない。
    // パス列挙はできる。無駄なパスをどう検出するかが悩みどころ。->できそう?

    int H, W; readln.read(H, W);
    auto S = () {
        int i, j; readln.read(i, j);
        i--, j--;
        return tuple(i, j);
    }();
    auto G = () {
        int i, j; readln.read(i, j);
        i--, j--;
        return tuple(i, j);
    }();

    bool is_in (int y, int x) {
        return 0 <= y && y < H && 0 <= x && x < W;
    }

    const auto dxy = [
        [-1, 0],
        [1, 0],
        [0, 1],
        [0, -1],
    ];

    int ans = 0;
    auto vis = new bool[][](H, W);
    void dfs (int y, int x) {
        if (G[0] == y && G[1] == x) {
            bool ok = true;
            () {
                foreach (i; 0..H) {
                    foreach (j; 0..W) {
                        if (!vis[i][j]) continue;
                        int c = 0;
                        foreach (d; dxy) {
                            int ni = i + d[0], nj = j + d[1];
                            if (is_in(ni, nj) && vis[ni][nj]) c++;
                        }
                        if (3 <= c) {
                            ok = false;
                            return;
                        }
                    }
                }

                // スタート、ゴールに触れてるのに無視したらダメ?
                int gc = 0;
                foreach (d; dxy) {
                    int ny = G[0] + d[0], nx = G[1] + d[1];
                    if (is_in(ny, nx) && vis[ny][nx]) gc++;
                }

                int sc = 0;
                foreach (d; dxy) {
                    int ny = S[0] + d[0], nx = S[1] + d[1];
                    if (is_in(ny, nx) && vis[ny][nx]) sc++;
                }

                if (2 <= gc || 2 <= sc) {
                    ok = false;
                }
            }();

            if (ok) {
                ans++;
            }
            return;
        }

        foreach (d; dxy) {
            int ny = y + d[0], nx = x + d[1];
            if (is_in(ny, nx) && !vis[ny][nx]) {
                vis[ny][nx] = true;
                dfs(ny, nx);
                vis[ny][nx] = false;
            }
        }
    }

    vis[S[0]][S[1]] = true;
    dfs(S[0], S[1]);

    writeln(ans);
}

void read (T...) (string S, ref T args) {
    import std.conv : to;
    import std.array : split;
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0