結果
問題 | No.867 避難経路 |
ユーザー | vwxyz |
提出日時 | 2024-04-14 16:58:53 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,018 bytes |
コンパイル時間 | 1,604 ms |
コンパイル使用メモリ | 82,384 KB |
実行使用メモリ | 250,436 KB |
最終ジャッジ日時 | 2024-10-03 17:36:43 |
合計ジャッジ時間 | 18,148 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
76,440 KB |
testcase_01 | AC | 125 ms
76,576 KB |
testcase_02 | AC | 137 ms
76,308 KB |
testcase_03 | AC | 137 ms
76,496 KB |
testcase_04 | AC | 130 ms
76,616 KB |
testcase_05 | AC | 117 ms
76,568 KB |
testcase_06 | AC | 124 ms
76,872 KB |
testcase_07 | AC | 126 ms
76,648 KB |
testcase_08 | AC | 126 ms
76,720 KB |
testcase_09 | AC | 122 ms
76,356 KB |
testcase_10 | AC | 124 ms
76,500 KB |
testcase_11 | AC | 116 ms
76,316 KB |
testcase_12 | AC | 138 ms
76,644 KB |
testcase_13 | AC | 116 ms
76,240 KB |
testcase_14 | AC | 124 ms
76,752 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
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=200 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")