結果

問題 No.34 砂漠の行商人
ユーザー katkkatk
提出日時 2016-09-03 22:28:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 280 ms / 5,000 ms
コード長 1,455 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-06-28 10:33:15
合計ジャッジ時間 3,395 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,008 KB
testcase_01 AC 35 ms
11,136 KB
testcase_02 AC 38 ms
11,136 KB
testcase_03 AC 35 ms
11,136 KB
testcase_04 AC 70 ms
11,264 KB
testcase_05 AC 74 ms
11,392 KB
testcase_06 AC 59 ms
11,136 KB
testcase_07 AC 134 ms
11,264 KB
testcase_08 AC 147 ms
11,264 KB
testcase_09 AC 112 ms
11,136 KB
testcase_10 AC 63 ms
11,392 KB
testcase_11 AC 90 ms
11,776 KB
testcase_12 AC 45 ms
11,264 KB
testcase_13 AC 280 ms
11,648 KB
testcase_14 AC 278 ms
11,392 KB
testcase_15 AC 37 ms
11,392 KB
testcase_16 AC 60 ms
11,392 KB
testcase_17 AC 37 ms
11,136 KB
testcase_18 AC 38 ms
11,136 KB
testcase_19 AC 130 ms
11,392 KB
testcase_20 AC 191 ms
11,520 KB
testcase_21 AC 39 ms
11,264 KB
testcase_22 AC 42 ms
11,392 KB
testcase_23 AC 38 ms
11,392 KB
testcase_24 AC 216 ms
11,520 KB
testcase_25 AC 58 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import queue
from collections import namedtuple

dx = (1, 0, -1, 0)
dy = (0, -1, 0, 1)
Point = namedtuple('Point', 'x y')

def solve():
    n, v, sx, sy, gx, gy = [int(i) for i in input().split(' ')]
    start = Point(x = sx-1, y = sy-1)
    goal = Point(x = gx-1, y = gy-1)
    costs = [[int(i) for i in input().split(' ')] for _ in range(n)]
    mincosts = [[v for _ in range(n)] for _ in range(n)]
    mincosts[start.y][start.x] = 0
    q = queue.Queue()
    in_queue = [[False for _ in range(n)] for _ in range(n)]
    q.put(start)
    in_queue[start.y][start.x] = True
    cnt = 0
    while True:
        tmp = queue.Queue()
        if q.empty() or mincosts[goal.y][goal.x] < v:
            break
        while not q.empty():
            x, y = q.get()
            in_queue[y][x] = False
            for tx, ty in zip(dx, dy):
                nx = x + tx
                ny = y + ty
                if nx >= 0 and nx < n and ny >= 0 and ny < n:
                    tmpcost = mincosts[y][x] + costs[ny][nx]
                    if mincosts[ny][nx] > tmpcost:
                        mincosts[ny][nx] = tmpcost
                        if not in_queue[ny][nx]:
                            tmp.put(Point(nx, ny))
                            in_queue[ny][nx] = True
                        
        q = tmp
        cnt += 1
        
    if mincosts[goal.y][goal.x] < v:
        print(cnt)
    else:
        print(-1)

if __name__ == "__main__":
    solve()
0