結果

問題 No.2708 Jewel holder
ユーザー KDKJKDKJ
提出日時 2024-04-29 19:42:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,571 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 89,280 KB
最終ジャッジ日時 2024-04-29 19:42:20
合計ジャッジ時間 4,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
88,528 KB
testcase_01 AC 138 ms
88,680 KB
testcase_02 AC 131 ms
88,576 KB
testcase_03 AC 129 ms
88,612 KB
testcase_04 AC 143 ms
88,632 KB
testcase_05 AC 153 ms
88,460 KB
testcase_06 AC 130 ms
88,484 KB
testcase_07 AC 132 ms
88,604 KB
testcase_08 AC 132 ms
88,488 KB
testcase_09 AC 125 ms
88,824 KB
testcase_10 AC 128 ms
88,520 KB
testcase_11 AC 130 ms
88,504 KB
testcase_12 AC 142 ms
88,672 KB
testcase_13 AC 131 ms
88,412 KB
testcase_14 AC 134 ms
88,200 KB
testcase_15 AC 126 ms
88,684 KB
testcase_16 AC 125 ms
88,600 KB
testcase_17 AC 153 ms
89,280 KB
testcase_18 AC 141 ms
89,020 KB
testcase_19 AC 140 ms
89,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop, heapify
import sys
from collections import defaultdict, deque,Counter
from math import ceil, floor, sqrt, factorial,gcd
from itertools import permutations, combinations,product
from bisect import bisect_left, bisect_right
from copy import deepcopy
from functools import lru_cache #@lru_cache(maxsize=None)
from fractions import Fraction
sys.setrecursionlimit(10**6)
# input = sys.stdin.readline
vector1 = [[0, -1], [1, 0], [0, 1], [-1, 0]]
vector2 = [[0, 1], [1, 0], [-1, 0], [0, -1],
           [1,-1], [-1, 1], [1, 1], [-1, -1]]




def main():
    h,w = map(int,input().split())
    a = [input() for i in range(h)]
    q = deque()
    q.append([0,0,1])
    memo = defaultdict(int)
    md = defaultdict(lambda:-1)
    memo[(0,0)] = 1
    md[(0,0)] = 0
    ans = 0

    while q:
        x,y,c = q.popleft()
        if x==h-1 and y==w-1:
            ans += 1
        for dx,dy in vector1:
            nx = x+dx
            ny = y+dy
            if 0<=nx<h and 0<=ny<w and a[nx][ny] != "#"\
                and (md[(nx,ny)] ==-1 or md[(nx,ny)] ==  md[(x,y)]+1):
                if c == 0:
                    if a[nx][ny] == "o":
                        md[(nx,ny)] = md[(x,y)] + 1
                        q.append([nx,ny,c+1])
                else:
                    md[(nx,ny)] = md[(x,y)] + 1
                    if a[nx][ny] == "o":
                        q.append([nx,ny,c+1])
                    else:
                        q.append([nx,ny,c-1])
    print(ans)                    
    
if __name__ == '__main__':
    main()
0