結果

問題 No.2928 Gridpath
ユーザー k82bk82b
提出日時 2024-10-12 15:33:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 857 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 15:33:32
合計ジャッジ時間 1,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
using Int = long long;
int dx[] = {1, 0, -1, 0};
int dy[] = {0, 1, 0, -1};
int main() {
	int H, W;
	std::cin >> H >> W;
	int Si, Sj;
	std::cin >> Si >> Sj;
	--Si;
	--Sj;
	int Gi, Gj;
	std::cin >> Gi >> Gj;
	--Gi;
	--Gj;
	int ans = 0;
	std::vector vis(H, std::vector(W, false));
	auto dfs = [&](auto dfs, int x, int y) {
		if (x < 0 || y < 0 || x >= H || y >= W ||vis[x][y]) return;
		int cnt = 0;
		for (int i = 0; i < 4; ++i) {
			int xx = x + dx[i];
			int yy = y + dy[i];
			if (xx < 0 || yy < 0 || xx >= H || yy >= W) continue;
			if (vis[xx][yy]) {
				++cnt;
			}
		}
		if (cnt > 1) return;
		if (x == Gi && y == Gj) {
			++ans;
			return;
		}
		vis[x][y] = true;
		for (int i = 0; i < 4; ++i) {
			dfs(dfs, x + dx[i], y + dy[i]);
		}
		vis[x][y] = false;
	};
	dfs(dfs, Si, Sj);
	std::cout << ans << std::endl;
}
0