結果

問題 No.34 砂漠の行商人
ユーザー dangodango
提出日時 2023-07-09 15:57:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 5,000 ms
コード長 1,301 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 79,988 KB
最終ジャッジ日時 2024-07-23 13:04:56
合計ジャッジ時間 3,772 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
68,148 KB
testcase_01 AC 60 ms
67,188 KB
testcase_02 AC 72 ms
74,028 KB
testcase_03 AC 65 ms
70,528 KB
testcase_04 AC 99 ms
78,600 KB
testcase_05 AC 89 ms
78,904 KB
testcase_06 AC 96 ms
78,612 KB
testcase_07 AC 96 ms
79,304 KB
testcase_08 AC 96 ms
79,708 KB
testcase_09 AC 93 ms
79,612 KB
testcase_10 AC 90 ms
79,884 KB
testcase_11 AC 91 ms
79,644 KB
testcase_12 AC 88 ms
78,460 KB
testcase_13 AC 98 ms
79,988 KB
testcase_14 AC 99 ms
79,492 KB
testcase_15 AC 74 ms
75,052 KB
testcase_16 AC 89 ms
78,976 KB
testcase_17 AC 71 ms
74,744 KB
testcase_18 AC 76 ms
74,516 KB
testcase_19 AC 95 ms
79,588 KB
testcase_20 AC 92 ms
79,572 KB
testcase_21 AC 90 ms
79,632 KB
testcase_22 AC 92 ms
79,468 KB
testcase_23 AC 83 ms
78,232 KB
testcase_24 AC 94 ms
79,504 KB
testcase_25 AC 91 ms
79,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List, Tuple

def main():
    rd = input().split()
    n, v = int(rd[0]), int(rd[1])
    sx, sy = int(rd[2]) - 1, int(rd[3]) - 1
    gx, gy = int(rd[4]) - 1, int(rd[5]) - 1
    lij = [list(map(int, input().split())) for _ in range(n)]

    eij: List[List[Tuple[int, int]]] = [[] for _ in range(n * n)]
    for j in range(n):
        for i in range(n):
            p = (j, i)
            for sib in sibPoints:
                np = (p[0] + sib[0], p[1] + sib[1])
                if np[0] >= 0 and np[1] >= 0 and np[0] < n and np[1] < n:
                    eij[p[0] + p[1] * n].append((np[0] + np[1] * n, lij[np[1]][np[0]]))

    s = sx + sy * n
    g = gx + gy * n

    def calc():
        qi = [s]
        dp = [-1] * (n * n)
        dp[s] = 0

        r = 1
        while len(qi) > 0:
            ri = []
            for q in qi:
                for e in eij[q]:
                    nv = dp[q] + e[1]
                    if nv < v and (dp[e[0]] < 0 or dp[e[0]] > nv):
                        if e[0] == g:
                            return r
                        dp[e[0]] = nv
                        ri.append(e[0])
            qi = ri
            r += 1

        return -1

    print(calc())

sibPoints = [(-1, 0), (0, -1), (1, 0), (0, 1)]
if __name__ == '__main__':
  main()
0