結果

問題 No.2928 Gridpath
ユーザー amesyuamesyu
提出日時 2024-09-03 23:28:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,236 bytes
コンパイル時間 855 ms
コンパイル使用メモリ 81,064 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-04 00:21:47
合計ジャッジ時間 1,596 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
const vector<int> dx4 = {0, 1, 0, -1};
const vector<int> dy4 = {1, 0, -1, 0};

int H, W;
int Si, Sj, Gi, Gj;
int count = 0;

bool valid(int i, int j) {
    if(!(0 <= i && i < H)) return false;
    if(!(0 <= j && j < W)) return false;
    return true;
}

void solve(int i, int j, vector<vector<bool>>& M) {
    
    if(i == Gi && j == Gj) {
        count++;
        return;
    }
    
    for(int k=0;k<4;k++) {
        int ni = i + dx4[k], nj = j + dy4[k];
        if(!valid(ni, nj)) continue;
        if(M[ni][nj]) continue;
        int neighbor = 0;
        for(int k_=0;k_<4;k_++) {
            int ni_ = ni + dx4[k_], nj_ = nj + dy4[k_];
            if(!valid(ni_, nj_)) continue;
            if(M[ni_][nj_]) neighbor++;
        }
        if(neighbor == 1) {
            M[ni][nj] = true;
            solve(ni, nj, M);
        }
        M[ni][nj] = false;
    }
}

int main() {

    pair<int, int> p1, p2;
    cin >> H >> W;
    cin >> Si >> Sj;
    cin >> Gi >> Gj;
    Si--;Sj--;Gi--;Gj--;
    p1 = {Si, Sj};
    p2 = {Gi, Gj};

    count = 0;
    vector<vector<bool>> M(H, vector<bool>(W, false));
    M[Si][Sj] = true;
    solve(Si, Sj, M);
    cout << count << endl;
}
0