結果

問題 No.2708 Jewel holder
ユーザー FromBooskaFromBooska
提出日時 2024-03-31 16:52:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 848 ms / 2,000 ms
コード長 1,489 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 83,696 KB
最終ジャッジ日時 2024-09-30 21:07:30
合計ジャッジ時間 2,992 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,628 KB
testcase_01 AC 38 ms
53,012 KB
testcase_02 AC 41 ms
52,872 KB
testcase_03 AC 37 ms
53,228 KB
testcase_04 AC 39 ms
53,248 KB
testcase_05 AC 36 ms
52,748 KB
testcase_06 AC 39 ms
52,356 KB
testcase_07 AC 38 ms
53,808 KB
testcase_08 AC 38 ms
53,692 KB
testcase_09 AC 39 ms
54,336 KB
testcase_10 AC 37 ms
53,444 KB
testcase_11 AC 89 ms
75,928 KB
testcase_12 AC 40 ms
54,176 KB
testcase_13 AC 62 ms
68,276 KB
testcase_14 AC 45 ms
59,880 KB
testcase_15 AC 848 ms
83,696 KB
testcase_16 AC 55 ms
65,060 KB
testcase_17 AC 354 ms
79,896 KB
testcase_18 AC 94 ms
76,936 KB
testcase_19 AC 105 ms
77,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 盤面が非常に小さい、visited管理してDFSにしよう
# 問題文では「没収されるときに1つも宝石を持っていない状況」とあるが0個になるのはOKなのか
# 動きが上下左右だけというのも書いてない

H, W = map(int, input().split())
A = []
for i in range(H):
    A.append(input())
    
import sys
sys.setrecursionlimit(10**7)

def dfs(ch, cw, step, coin):
    global ans_list, min_step    
    
    #print('ch', ch, 'cw', cw, 'step', step, 'coin', coin)
    #print('visited', visited)
    #print()
    if step > min_step:
        return

    if (ch, cw)==(H-1, W-1):
        ans_list.append(step)
        if step < min_step:
            min_step = step
        return
    
    for dh, dw in d:
        if 0 <= ch+dh < H and 0 <= cw+dw < W and visited[ch+dh][cw+dw ]==0:
            if A[ch+dh][cw+dw] == 'o':
                visited[ch+dh][cw+dw ]=1
                dfs(ch+dh, cw+dw, step+1, coin+1)
                visited[ch+dh][cw+dw ]=0
            elif A[ch+dh][cw+dw] == 'x':
                if coin>=1:
                    visited[ch+dh][cw+dw ]=1
                    dfs(ch+dh, cw+dw, step+1, coin-1)
                    visited[ch+dh][cw+dw ]=0
    
d = [[+1, 0], [-1, 0], [0, +1], [0, -1]]
min_step = 10**3
ans_list = []
visited = [[0]*W for i in range(H)]
visited[0][0] = 1
dfs(0, 0, 0, 1)
#print(ans_list)

if len(ans_list)>0:
    min_step = min(ans_list)
    ans = ans_list.count(min_step)
else:
    ans = 0
print(ans)
0