結果

問題 No.2708 Jewel holder
ユーザー KohkiKohki
提出日時 2024-11-01 20:35:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 1,082 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 76,516 KB
最終ジャッジ日時 2024-11-01 20:36:01
合計ジャッジ時間 2,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,408 KB
testcase_01 AC 34 ms
52,608 KB
testcase_02 AC 34 ms
53,416 KB
testcase_03 AC 34 ms
52,836 KB
testcase_04 AC 34 ms
52,652 KB
testcase_05 AC 35 ms
52,464 KB
testcase_06 AC 35 ms
52,964 KB
testcase_07 AC 38 ms
53,984 KB
testcase_08 AC 39 ms
53,648 KB
testcase_09 AC 38 ms
54,368 KB
testcase_10 AC 38 ms
52,508 KB
testcase_11 AC 37 ms
53,120 KB
testcase_12 AC 37 ms
53,372 KB
testcase_13 AC 38 ms
52,396 KB
testcase_14 AC 39 ms
52,568 KB
testcase_15 AC 38 ms
53,136 KB
testcase_16 AC 37 ms
53,264 KB
testcase_17 AC 86 ms
76,516 KB
testcase_18 AC 39 ms
53,112 KB
testcase_19 AC 39 ms
53,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = [input() for _ in range(H)]
# 壁は"#"
# 通路は"."

# 2方向移動
dx = [1, 0]
dy = [0, 1]

# 壁を追加
A = ["#" * (W + 2)] + ["#" + a + "#" for a in A] + ["#" * (W + 2)]

# スタートは(1, 1)
sx, sy = 1, 1
# ゴールは(H, W)
gx, gy = H, W

# 宝石がもらえるマス
jewel = "o"

# 宝石が奪われるマス
trap = "x"

ans = 0


# スタートからゴールの内、最短距離の経路の内、宝石が一つ以上ある経路の数を求める
# 再帰関数
def dfs(x, y, cnt):
    # 宝石がある場合
    if A[x][y] == jewel:
        cnt += 1
    # 宝石が奪われる場合
    if A[x][y] == trap:
        cnt -= 1
        if cnt < 0:
            return
    # ゴールに到達した場合
    if x == gx and y == gy:
        if cnt >= 0:
            global ans
            ans += 1
    # 4方向に進む
    for i in range(2):
        nx = x + dx[i]
        ny = y + dy[i]

        # 進める場合
        if A[nx][ny] != "#":
            # 移動
            dfs(nx, ny, cnt)


dfs(sx, sy, 0)

print(ans)
0