結果

問題 No.2928 Gridpath
ユーザー Nzt3Nzt3
提出日時 2024-10-19 20:59:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,047 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 205,860 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-19 20:59:13
合計ジャッジ時間 3,344 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep2(i,l,r) for(int i=(l);i<(int)(r);i++)
#define all(v) v.begin(),v.end()

int dx[]={0,1,0,-1};
int dy[]={-1,0,1,0};
array<int,2> S,G;

int dfs(vector<vector<bool>>& a,int h,int w,const int& H,const int& W){
  if(h==G[0]&&w==G[1])return 1;
  auto bound_ok=[H,W](int x,int y){
    return x>=0&&x<H&&y>=0&&y<W;
  };
  int ret=0;
  rep(k,4){
    int h2=h+dx[k],w2=w+dy[k];
    if(bound_ok(h2,w2)&&!a[h2][w2]){
      int cnt=0;
      rep(i,4){
        int h3=h2+dx[i],w3=w2+dy[i];
        if(bound_ok(h3,w3)&&a[h3][w3])cnt++;
      }
      if(cnt==1){
        a[h2][w2]=1;
        ret+=dfs(a,h2,w2,H,W);
        a[h2][w2]=0;
      }
    }
  }
  return ret;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int H,W;
  cin>>H>>W;
  cin>>S[0]>>S[1];
  cin>>G[0]>>G[1];
  S[0]--,S[1]--,G[0]--,G[1]--;
  vector A(H,vector(W,false));
  A[S[0]][S[1]]=1;
  cout<<dfs(A,S[0],S[1],H,W)<<'\n';
}
0