結果

問題 No.2928 Gridpath
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-10-13 12:49:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,441 bytes
コンパイル時間 3,190 ms
コンパイル使用メモリ 251,560 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 12:49:46
合計ジャッジ時間 3,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define For(i, a, b) for(long long i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(long long i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;

vector<int> di = {-1, 0, 1, 0};
vector<int> dj = {0, 1, 0, -1};

int main() {
    int h, w, si, sj, gi, gj;
    cin >> h >> w >> si >> sj >> gi >> gj;
    si--;
    sj--;
    gi--;
    gj--;
    auto inc = [&](int i, int j) {
        return (0 <= i && i < h && 0 <= j && j < w);
    };
    vector<vector<bool>> visit(h, vector<bool>(w, false));
    auto dfs = [&](auto dfs, int i, int j) -> int {
        if (i == gi && j == gj) {
            return 1;
        }
        int res = 0;
        rep(k, 4) {
            int ni = i + di[k], nj = j + dj[k];
            if (!inc(ni, nj) || visit[ni][nj]) {
                continue;
            }
            bool ok = true;
            rep(kk, 4) {
                int nni = ni + di[kk], nnj = nj + dj[kk];
                if (inc(nni, nnj) && !(nni == i && nnj == j) && visit[nni][nnj]) {
                    ok = false;
                }
            }
            if (ok) {
                visit[i][j] = true;
                res += dfs(dfs, ni, nj);
                visit[i][j] = false;
            }
        }
        return res;
    };
    cout << dfs(dfs, si, sj) << endl;
}
0