結果
問題 | No.1638 Robot Maze |
ユーザー | H20 |
提出日時 | 2021-08-06 21:44:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,312 bytes |
コンパイル時間 | 168 ms |
コンパイル使用メモリ | 81,784 KB |
実行使用メモリ | 98,912 KB |
最終ジャッジ日時 | 2024-09-17 01:36:57 |
合計ジャッジ時間 | 12,050 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
54,632 KB |
testcase_01 | AC | 46 ms
54,528 KB |
testcase_02 | AC | 44 ms
54,784 KB |
testcase_03 | AC | 216 ms
88,884 KB |
testcase_04 | AC | 49 ms
60,544 KB |
testcase_05 | AC | 50 ms
60,416 KB |
testcase_06 | AC | 54 ms
60,288 KB |
testcase_07 | AC | 51 ms
60,288 KB |
testcase_08 | AC | 50 ms
60,672 KB |
testcase_09 | AC | 50 ms
60,288 KB |
testcase_10 | AC | 50 ms
60,288 KB |
testcase_11 | AC | 49 ms
60,928 KB |
testcase_12 | AC | 50 ms
60,544 KB |
testcase_13 | AC | 51 ms
60,672 KB |
testcase_14 | AC | 231 ms
85,444 KB |
testcase_15 | AC | 165 ms
80,256 KB |
testcase_16 | AC | 164 ms
79,796 KB |
testcase_17 | AC | 158 ms
79,900 KB |
testcase_18 | AC | 98 ms
77,452 KB |
testcase_19 | AC | 213 ms
83,652 KB |
testcase_20 | AC | 212 ms
83,520 KB |
testcase_21 | AC | 174 ms
89,772 KB |
testcase_22 | AC | 128 ms
83,672 KB |
testcase_23 | AC | 126 ms
83,608 KB |
testcase_24 | AC | 174 ms
89,512 KB |
testcase_25 | AC | 169 ms
89,380 KB |
testcase_26 | AC | 139 ms
83,848 KB |
testcase_27 | AC | 141 ms
83,548 KB |
testcase_28 | AC | 141 ms
83,672 KB |
testcase_29 | AC | 142 ms
84,024 KB |
testcase_30 | AC | 45 ms
54,400 KB |
testcase_31 | WA | - |
testcase_32 | AC | 248 ms
87,660 KB |
testcase_33 | AC | 332 ms
91,876 KB |
testcase_34 | AC | 420 ms
98,292 KB |
testcase_35 | AC | 311 ms
90,460 KB |
testcase_36 | AC | 416 ms
97,992 KB |
testcase_37 | AC | 258 ms
87,816 KB |
testcase_38 | AC | 260 ms
87,988 KB |
testcase_39 | AC | 410 ms
97,336 KB |
testcase_40 | AC | 304 ms
89,032 KB |
testcase_41 | AC | 321 ms
90,972 KB |
testcase_42 | AC | 360 ms
93,452 KB |
testcase_43 | AC | 372 ms
93,980 KB |
testcase_44 | AC | 412 ms
94,972 KB |
testcase_45 | AC | 423 ms
94,268 KB |
testcase_46 | AC | 399 ms
96,608 KB |
testcase_47 | AC | 354 ms
93,304 KB |
testcase_48 | AC | 392 ms
98,160 KB |
testcase_49 | AC | 256 ms
87,400 KB |
testcase_50 | AC | 359 ms
93,852 KB |
testcase_51 | AC | 425 ms
98,912 KB |
ソースコード
import collections import heapq class Dijkstra: def __init__(self): self.e = collections.defaultdict(list) def add(self, u, v, d): self.e[u].append([v, d]) def delete(self, u, v): self.e[u] = [_ for _ in self.e[u] if _[0] != v] self.e[v] = [_ for _ in self.e[v] if _[0] != u] def search(self, s): """ :param s: 始点 :return: 始点から各点までの最短経路 """ d = collections.defaultdict(lambda: float('inf')) d[s] = 0 q = [] heapq.heappush(q, (0, s)) v = collections.defaultdict(bool) while len(q): k, u = heapq.heappop(q) if v[u]: continue v[u] = True for uv, ud in self.e[u]: if v[uv]: continue vd = k + ud if d[uv] > vd: d[uv] = vd heapq.heappush(q, (vd, uv)) return d H,W = map(int, input().split()) U,D,R,L,K,P = map(int, input().split()) sx,sy,tx,ty = map(int, input().split()) sx-=1;sy-=1;tx-=1;ty-=1; MAP = [] for i in range(H): MAP.append(input()) graph = Dijkstra() for i in range(H): for j in range(W): if 0<=i-1<H and 0<=j<W: if MAP[i-1][j]=='.': graph.add((i,j,0),(i-1,j,0),U) if MAP[i-1][j]=='@': graph.add((i-1,j,1),(i-1,j,0),P) graph.add((i,j,0),(i-1,j,1),U) if 0<=i+1<H and 0<=j<W: if MAP[i+1][j]=='.': graph.add((i,j,0),(i+1,j,0),D) if MAP[i+1][j]=='@': graph.add((i+1,j,1),(i+1,j,0),P) graph.add((i,j,0),(i+1,j,1),D) if 0<=i<H and 0<=j+1<W: if MAP[i][j+1]=='.': graph.add((i,j,0),(i,j+1,0),R) if MAP[i][j+1]=='@': graph.add((i,j+1,1),(i,j+1,0),P) graph.add((i,j,0),(i,j+1,1),D) if 0<=i<H and 0<=j-1<W: if MAP[i][j-1]=='.': graph.add((i,j,0),(i,j-1,0),R) if MAP[i][j-1]=='@': graph.add((i,j-1,1),(i,j-1,0),P) graph.add((i,j,0),(i,j-1,1),D) result = graph.search((sx,sy,0)) if result[(tx,ty,0)]<=K: print('Yes') else: print('No')