結果

問題 No.2928 Gridpath
ユーザー hiro1729hiro1729
提出日時 2024-10-12 15:18:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-10-12 15:18:34
合計ジャッジ時間 2,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 101 ms
75,872 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 47 ms
60,416 KB
testcase_06 AC 86 ms
76,160 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 38 ms
52,524 KB
testcase_09 AC 71 ms
72,576 KB
testcase_10 AC 43 ms
58,240 KB
testcase_11 AC 38 ms
52,096 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 37 ms
52,352 KB
testcase_14 AC 38 ms
52,608 KB
testcase_15 AC 97 ms
75,904 KB
testcase_16 AC 97 ms
75,888 KB
testcase_17 AC 101 ms
76,012 KB
testcase_18 AC 119 ms
76,468 KB
testcase_19 AC 88 ms
75,776 KB
testcase_20 AC 38 ms
52,096 KB
testcase_21 AC 108 ms
76,672 KB
testcase_22 AC 111 ms
76,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
Si, Sj = map(int, input().split())
Gi, Gj = map(int, input().split())
Si -= 1
Sj -= 1
Gi -= 1
Gj -= 1

def dfs(c, x, y):
	if x == Gi and y == Gj:
		return 1
	ans = 0
	for nx, ny in [(x - 1, y), (x, y - 1), (x + 1, y), (x, y + 1)]:
		if 0 <= nx < H and 0 <= ny < W and c & (1 << (nx * W + ny)) == 0:
			cn = 0
			for nnx, nny in [(nx - 1, ny), (nx, ny - 1), (nx + 1, ny), (nx, ny + 1)]:
				if 0 <= nnx < H and 0 <= nny < W and c & (1 << (nnx * W + nny)):
					cn += 1
			if cn == 1:
				ans += dfs(c | (1 << (nx * W + ny)), nx, ny)
	return ans

print(dfs(1 << (Si * W + Sj), Si, Sj))
0