結果

問題 No.971 いたずらっ子
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-19 23:34:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 593 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 178,816 KB
最終ジャッジ日時 2025-01-02 18:59:33
合計ジャッジ時間 30,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 WA -
testcase_08 AC 1,812 ms
92,288 KB
testcase_09 AC 1,720 ms
91,392 KB
testcase_10 AC 105 ms
76,800 KB
testcase_11 AC 34 ms
52,480 KB
testcase_12 AC 34 ms
52,864 KB
testcase_13 AC 49 ms
64,384 KB
testcase_14 WA -
testcase_15 AC 48 ms
62,976 KB
testcase_16 AC 50 ms
62,592 KB
testcase_17 AC 37 ms
52,736 KB
testcase_18 AC 35 ms
52,864 KB
testcase_19 AC 36 ms
52,608 KB
testcase_20 AC 37 ms
52,736 KB
testcase_21 AC 38 ms
53,504 KB
testcase_22 AC 38 ms
53,888 KB
testcase_23 AC 38 ms
52,480 KB
testcase_24 AC 38 ms
178,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush

H,W = map(int,input().split())
A = [input() for i in range(H)]
inf = 10**10
dis = [[inf]*W for i in range(H)]

dis[0][0] = 0
h = [[0,0,0,0]]
dx = [1,0,-1,0]
dy = [0,1,0,-1]
while h:
    d,d2,x,y = heappop(h)
    if dis[x][y] != d:
        continue
    for i in range(4):
        nx = x+dx[i]
        ny = y+dy[i]
        if 0 <= nx < H and 0 <= ny < W:
            p = int(A[nx][ny] == "k")
            if dis[nx][ny] > d + 1 + p*(d2+1):
                dis[nx][ny] = d + 1 + p*(d2+1)
                heappush(h,[dis[nx][ny],d2+1,nx,ny])

print(dis[-1][-1])
0