結果

問題 No.2928 Gridpath
ユーザー Andrew8128Andrew8128
提出日時 2024-10-12 16:01:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 1,657 bytes
コンパイル時間 2,961 ms
コンパイル使用メモリ 253,992 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 16:02:00
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 2 ms
5,248 KB
testcase_15 AC 2 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 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i, x, y) for (auto i = (x); i < (y); i++)
#define RREP(i, x, y) for (auto i = (y) - 1; (x) <= i; i--)
#define ALL(x) (x).begin(), (x).end()
#pragma GCC optimize("O3")
template<class T> bool inr(const T &l, const T &x, const T &r){return (l<=x && x<r);}
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int H, W;
  int Si, Sj, Gi, Gj;
  cin >> H >> W >> Si >> Sj >> Gi >> Gj;
  Si--, Sj--, Gi--, Gj--;
  vector<vector<int>> c(H, vector<int>(W));
  int dy[4] = {0,1,0,-1};
  int dx[4] = {1,0,-1,0};
  int ans = 0;
  function<void(int, int)> dfs = [&](int i, int j){
    // cout << i << " " << j << "\n";
    // REP(k, 0, H){
    //   REP(l, 0, W){
    //     cout << c[k][l] << " ";
    //   }
    //   cout << "\n";
    // }
    if(i == Gi && j == Gj){
      ans++;
      return;
    }
    REP(d, 0, 4){
      int ni = i + dy[d];
      int nj = j + dx[d];
      if(!inr(0, ni, H))continue;
      if(!inr(0, nj, W))continue;
      if(c[ni][nj] == 1)continue;
      vector<array<int, 2>> memo;
      REP(e, 0, 4){
        if(e == d)continue;
        int mi = i + dy[e];
        int mj = j + dx[e];
        if(!inr(0, mi, H))continue;
        if(!inr(0, mj, W))continue;
        if(c[mi][mj] == 1)continue;
        memo.push_back({mi, mj});
        c[mi][mj] = 1;
      }
      c[i][j] = 1;
      dfs(ni, nj);
      c[i][j] = 0;
      REP(e, 0, ssize(memo)){
        c[memo[e][0]][memo[e][1]] = 0;
      }
    }
    return;
  };
  dfs(Si, Sj);
  cout << ans << "\n";
  return 0;
}
/*
  File : ~/yukicoder/midoriika_3rd/J.cpp
  Date : 2024/10/12
  Time : 15:31:09
*/
0