結果

問題 No.2928 Gridpath
ユーザー noshinnnoshinn
提出日時 2024-10-12 15:52:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 1,290 bytes
コンパイル時間 1,945 ms
コンパイル使用メモリ 177,620 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 15:52:32
合計ジャッジ時間 2,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 1 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 11 ms
5,248 KB
testcase_19 AC 11 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 13 ms
5,248 KB
testcase_22 AC 12 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

void culc(int &ans, set<pair<int, int>> &st, pair<int, int> now, int h, int w, pair<int, int> g)
{
  vector<pair<int, int>> v;
  if (now.first != 1)
    v.push_back({now.first - 1, now.second});
  if (now.first != h)
    v.push_back({now.first + 1, now.second});
  if (now.second != 1)
    v.push_back({now.first, now.second - 1});
  if (now.second != w)
    v.push_back({now.first, now.second + 1});
  for (auto p : v)
  {
    if (st.count(p) == 1)
      continue;
    int cnt = 0;
    vector<pair<int, int>> dx = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}};
    for (int i = 0; i < 4; i++)
    {
      if (st.count({p.first + dx[i].first, p.second + dx[i].second}) == 1)
        cnt++;
    }
    if (cnt > 1)
      continue;
    if (p == g)
      ans++;
    else
    {
      st.insert(p);
      culc(ans, st, p, h, w, g);
      st.erase(p);
    }
  }
}

void solve()
{
  int h, w;
  cin >> h >> w;
  pair<int, int> s, g;
  cin >> s.first >> s.second >> g.first >> g.second;
  int ans = 0;
  set<pair<int, int>> st;
  st.insert(s);
  culc(ans, st, s, h, w, g);
  cout << ans << endl;
}

int main()
{
  std::cin.tie(0)->sync_with_stdio(0);
  cout << setprecision(20);
  int CNT = 1;
  for (int i = 0; i < CNT; i++)
    solve();
}
0