結果

問題 No.2928 Gridpath
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-15 00:58:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 1,191 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 206,232 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 00:58:47
合計ジャッジ時間 3,117 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 6 ms
5,248 KB
testcase_15 AC 6 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>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    int ans=0, H, W, sx, sy, gx, gy;
    cin >> H >> W;
    cin >> sx >> sy;
    cin >> gx >> gy;
    sx--; sy--; gx--; gy--;
    int dx[4] = {1,0,-1,0};
    int dy[4] = {0,1,0,-1};
    auto f=[&](int h, int w){
        return 0 <= h && h < H && 0 <= w && w < W;
    };
    vector used(H, vector<bool>(W));
    auto dfs=[&](auto self, int i, int j)->void{
        if (i == gx && j == gy){
            ans++;
            return;
        }
        used[i][j] = 1;
        int ni, nj, ni2, nj2;
        for (int k=0; k<4; k++){
            ni = i+dx[k]; nj = j+dy[k];
            if (!f(ni, nj)) continue;
            if (used[ni][nj]) continue;
            bool ok=1;
            for (int l=0; l<4; l++){
                ni2 = ni+dx[l]; nj2 = nj+dy[l];
                if (!f(ni2, nj2)) continue;
                if (ni2 == i && nj2 == j) continue;
                if (used[ni2][nj2]) ok=0;
            }
            if (ok) self(self, ni, nj);
        }
        used[i][j] = 0;
    };
    dfs(dfs, sx, sy);
    cout << ans << endl;

    return 0;
}
0