結果

問題 No.867 避難経路
ユーザー nep_pudding3nep_pudding3
提出日時 2019-08-16 23:13:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,410 ms / 6,000 ms
コード長 1,354 bytes
コンパイル時間 669 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 209,380 KB
最終ジャッジ日時 2024-09-22 22:05:46
合計ジャッジ時間 49,581 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,424 KB
testcase_01 AC 50 ms
55,296 KB
testcase_02 AC 46 ms
55,552 KB
testcase_03 AC 44 ms
55,296 KB
testcase_04 AC 46 ms
55,296 KB
testcase_05 AC 46 ms
55,424 KB
testcase_06 AC 49 ms
55,168 KB
testcase_07 AC 46 ms
55,296 KB
testcase_08 AC 50 ms
55,548 KB
testcase_09 AC 46 ms
55,552 KB
testcase_10 AC 47 ms
55,168 KB
testcase_11 AC 46 ms
55,168 KB
testcase_12 AC 45 ms
55,424 KB
testcase_13 AC 46 ms
54,912 KB
testcase_14 AC 46 ms
55,040 KB
testcase_15 AC 1,868 ms
174,148 KB
testcase_16 AC 2,394 ms
202,396 KB
testcase_17 AC 1,850 ms
170,864 KB
testcase_18 AC 2,136 ms
195,288 KB
testcase_19 AC 2,306 ms
199,972 KB
testcase_20 AC 2,150 ms
191,964 KB
testcase_21 AC 2,410 ms
209,380 KB
testcase_22 AC 2,215 ms
194,268 KB
testcase_23 AC 1,793 ms
171,768 KB
testcase_24 AC 2,178 ms
202,104 KB
testcase_25 AC 2,101 ms
197,752 KB
testcase_26 AC 2,224 ms
201,264 KB
testcase_27 AC 1,933 ms
179,020 KB
testcase_28 AC 981 ms
126,640 KB
testcase_29 AC 980 ms
128,056 KB
testcase_30 AC 681 ms
133,616 KB
testcase_31 AC 776 ms
136,756 KB
testcase_32 AC 768 ms
136,484 KB
testcase_33 AC 767 ms
136,516 KB
testcase_34 AC 703 ms
133,212 KB
testcase_35 AC 1,478 ms
194,680 KB
testcase_36 AC 692 ms
132,248 KB
testcase_37 AC 1,227 ms
173,172 KB
testcase_38 AC 1,179 ms
165,512 KB
testcase_39 AC 1,057 ms
157,732 KB
testcase_40 AC 932 ms
151,024 KB
testcase_41 AC 42 ms
55,268 KB
testcase_42 AC 43 ms
56,068 KB
testcase_43 AC 43 ms
55,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
H,W = map(int,input().split())
gx,gy = map(int,input().split())
A = list(list(map(int,input().split()))for i in range(H))
cost = [[[[0,float('inf')]]for i in range(W)]for j in range(H)]
cost[gx-1][gy-1][-1] = [1,A[gx-1][gy-1]]
queue = deque([[gy-1,gx-1]])
while queue != deque([]):
    qx,qy = queue.popleft()
    if qx < W-1 and cost[qy][qx+1][-1][1] > cost[qy][qx][-1][1] + A[qy][qx+1]:
        cost[qy][qx+1].append([cost[qy][qx][-1][0]+1,cost[qy][qx][-1][1] + A[qy][qx+1]])
        queue.append([qx+1,qy])
    if qx > 0 and cost[qy][qx-1][-1][1] > cost[qy][qx][-1][1] + A[qy][qx-1]:
        cost[qy][qx-1].append([cost[qy][qx][-1][0]+1,cost[qy][qx][-1][1] + A[qy][qx-1]])
        queue.append([qx-1,qy])
    if qy > 0 and cost[qy-1][qx][-1][1] > cost[qy][qx][-1][1] + A[qy-1][qx]:
        cost[qy-1][qx].append([cost[qy][qx][-1][0]+1,cost[qy][qx][-1][1] + A[qy-1][qx]])
        queue.append([qx,qy-1])
    if qy < H-1 and cost[qy+1][qx][-1][1] > cost[qy][qx][-1][1] + A[qy+1][qx]:
        cost[qy+1][qx].append([cost[qy][qx][-1][0]+1,cost[qy][qx][-1][1] + A[qy+1][qx]])
        queue.append([qx,qy+1])
Q = int(input())
ans = []
for i in range(Q):
    x,y,k = map(int,input().split())
    hoge = float('inf')
    for a,b in cost[x-1][y-1]:
        hoge = min(a*k**2+b,hoge)
    ans.append(hoge)
for i in ans:
    print(i)
0