結果

問題 No.867 避難経路
ユーザー vwxyzvwxyz
提出日時 2024-04-14 17:01:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,017 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 232,980 KB
最終ジャッジ日時 2024-10-03 17:42:43
合計ジャッジ時間 118,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
76,288 KB
testcase_01 AC 101 ms
76,752 KB
testcase_02 AC 101 ms
76,536 KB
testcase_03 AC 108 ms
76,944 KB
testcase_04 AC 96 ms
76,448 KB
testcase_05 AC 95 ms
76,416 KB
testcase_06 AC 99 ms
76,288 KB
testcase_07 AC 98 ms
76,732 KB
testcase_08 AC 100 ms
76,416 KB
testcase_09 AC 101 ms
76,432 KB
testcase_10 AC 110 ms
76,312 KB
testcase_11 AC 98 ms
76,484 KB
testcase_12 AC 114 ms
76,848 KB
testcase_13 AC 97 ms
76,428 KB
testcase_14 AC 103 ms
76,800 KB
testcase_15 AC 4,409 ms
229,156 KB
testcase_16 AC 4,398 ms
226,992 KB
testcase_17 AC 4,599 ms
230,552 KB
testcase_18 AC 4,329 ms
228,068 KB
testcase_19 AC 4,396 ms
228,316 KB
testcase_20 AC 4,264 ms
226,444 KB
testcase_21 AC 4,156 ms
226,284 KB
testcase_22 AC 4,242 ms
227,988 KB
testcase_23 AC 4,409 ms
232,980 KB
testcase_24 AC 4,252 ms
228,952 KB
testcase_25 AC 4,171 ms
227,748 KB
testcase_26 AC 4,385 ms
227,732 KB
testcase_27 AC 4,277 ms
228,732 KB
testcase_28 AC 4,466 ms
227,576 KB
testcase_29 AC 4,431 ms
229,116 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 4,015 ms
226,316 KB
testcase_35 AC 4,143 ms
227,532 KB
testcase_36 AC 3,985 ms
226,536 KB
testcase_37 AC 3,871 ms
224,980 KB
testcase_38 AC 3,825 ms
225,236 KB
testcase_39 AC 3,796 ms
225,220 KB
testcase_40 AC 3,899 ms
226,052 KB
testcase_41 AC 64 ms
67,968 KB
testcase_42 AC 79 ms
73,840 KB
testcase_43 AC 89 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

H,W=map(int,input().split())
gx,gy=map(int,input().split())
gx-=1;gy-=1
A=[list(map(int,input().split())) for h in range(H)]
Q=int(input())
K=51
query=[[] for k in range(K+1)]
for q in range(Q):
    x,y,k=map(int,input().split())
    x-=1;y-=1
    query[min(k,K)].append((x,y,k,q))
ans_lst=[None]*Q
for k in range(K+1):
    w=k**2 if k<K else 1<<30
    inf=1<<60
    dist=[[inf]*W for h in range(H)]
    dist[gx][gy]=0
    queue=[(dist[gx][gy],gx,gy)]
    while queue:
        d,x,y=heapq.heappop(queue)
        for dx,dy in ((0,1),(1,0),(0,-1),(-1,0)):
            if 0<=x+dx<H and 0<=y+dy<W:
                xx,yy=x+dx,y+dy
                dd=d+w+A[xx][yy]
                if dist[xx][yy]>dd:
                    dist[xx][yy]=dd
                    heapq.heappush(queue,(dd,xx,yy))
    for x,y,c,q in query[k]:
        if k<K:
            ans_lst[q]=dist[x][y]+c**2+A[gx][gy]
        else:
            cnt,d=divmod(dist[x][y],w)
            ans_lst[q]=(cnt+1)*c**2+d+A[gx][gy]
print(*ans_lst,sep="\n")
0