結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 13 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 1 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 1 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 7 ms
5,248 KB
testcase_16 AC 10 ms
5,248 KB
testcase_17 AC 5 ms
5,248 KB
testcase_18 AC 10 ms
5,248 KB
testcase_19 AC 9 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 12 ms
5,248 KB
testcase_22 AC 11 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int h,w;
int si,sj,gi,gj;
vector<pair<int,int>> vc;
int dx[4]={0,1,0,-1},dy[4]={1,0,-1,0};
int dfs(int i,int j){
    //cout<<i<<" "<<j<<endl;
    int ct=0;
    for(int k=0;k<4;k++){
        int ni=i+dx[k],nj=j+dy[k];
        for(auto [li,lj]:vc){
            if(li==ni&&lj==nj)ct++;
        }
    }
    if(ct>1)return 0;
    if(i==gi&&j==gj)return 1;
    vc.push_back({i,j});
    int ret=0;
    for(int k=0;k<4;k++){
        int ni=i+dx[k],nj=j+dy[k];
        if(ni<0||ni>=h||nj<0||nj>=w)continue;
        bool ok=true;
        for(auto [li,lj]:vc){
            if(li==ni&&lj==nj)ok=false;
        }
        if(ok){
            ret+=dfs(ni,nj);
        }
    }
    vc.pop_back();
    return ret;
}

int main(){
    cin>>h>>w;
    cin>>si>>sj>>gi>>gj;
    si--;sj--;gi--;gj--;
    cout<<dfs(si,sj)<<"\n";
}
0