結果

問題 No.2708 Jewel holder
ユーザー KohkiKohki
提出日時 2024-11-01 20:31:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,181 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 76,824 KB
最終ジャッジ日時 2024-11-01 20:31:51
合計ジャッジ時間 2,509 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,696 KB
testcase_01 AC 38 ms
53,132 KB
testcase_02 AC 39 ms
52,828 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 38 ms
52,924 KB
testcase_08 AC 38 ms
52,504 KB
testcase_09 AC 37 ms
53,576 KB
testcase_10 AC 38 ms
52,264 KB
testcase_11 AC 38 ms
53,692 KB
testcase_12 AC 37 ms
52,740 KB
testcase_13 AC 38 ms
53,324 KB
testcase_14 AC 38 ms
53,340 KB
testcase_15 AC 38 ms
54,428 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

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 A[x][y] == jewel:
            cnt += 1
        if A[x][y] == trap:
            cnt -= 1
        if cnt >= 1:
            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