結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
76,288 KB
testcase_01 AC 97 ms
76,160 KB
testcase_02 AC 98 ms
76,544 KB
testcase_03 AC 100 ms
76,544 KB
testcase_04 AC 98 ms
76,800 KB
testcase_05 AC 96 ms
76,416 KB
testcase_06 AC 102 ms
76,160 KB
testcase_07 AC 100 ms
76,544 KB
testcase_08 AC 99 ms
76,672 KB
testcase_09 AC 97 ms
76,416 KB
testcase_10 AC 102 ms
76,288 KB
testcase_11 AC 95 ms
76,288 KB
testcase_12 AC 108 ms
76,440 KB
testcase_13 AC 95 ms
76,544 KB
testcase_14 AC 107 ms
76,672 KB
testcase_15 AC 3,897 ms
228,132 KB
testcase_16 AC 3,815 ms
226,344 KB
testcase_17 AC 4,008 ms
229,676 KB
testcase_18 AC 3,686 ms
227,260 KB
testcase_19 AC 3,725 ms
227,464 KB
testcase_20 AC 3,564 ms
225,528 KB
testcase_21 AC 3,510 ms
225,388 KB
testcase_22 AC 3,622 ms
227,632 KB
testcase_23 AC 3,714 ms
232,172 KB
testcase_24 AC 3,610 ms
227,956 KB
testcase_25 AC 3,523 ms
227,016 KB
testcase_26 AC 3,620 ms
227,256 KB
testcase_27 AC 3,565 ms
227,804 KB
testcase_28 AC 3,794 ms
226,976 KB
testcase_29 AC 3,827 ms
228,088 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 3,337 ms
225,616 KB
testcase_35 AC 3,571 ms
227,008 KB
testcase_36 AC 3,378 ms
226,088 KB
testcase_37 AC 3,302 ms
224,420 KB
testcase_38 AC 3,250 ms
224,624 KB
testcase_39 AC 3,215 ms
224,732 KB
testcase_40 AC 3,255 ms
225,360 KB
testcase_41 AC 62 ms
67,840 KB
testcase_42 AC 74 ms
73,728 KB
testcase_43 AC 74 ms
76,544 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=50
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