結果

問題 No.2646 Cycle Maze
ユーザー hato336hato336
提出日時 2024-02-25 20:39:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,207 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 367,812 KB
最終ジャッジ日時 2024-09-29 11:15:13
合計ジャッジ時間 27,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
92,360 KB
testcase_01 AC 124 ms
85,220 KB
testcase_02 AC 130 ms
89,100 KB
testcase_03 AC 129 ms
89,308 KB
testcase_04 AC 117 ms
85,772 KB
testcase_05 AC 117 ms
85,712 KB
testcase_06 WA -
testcase_07 AC 135 ms
88,916 KB
testcase_08 AC 117 ms
85,700 KB
testcase_09 AC 129 ms
89,140 KB
testcase_10 AC 141 ms
89,784 KB
testcase_11 AC 135 ms
89,232 KB
testcase_12 WA -
testcase_13 AC 125 ms
85,568 KB
testcase_14 AC 123 ms
85,664 KB
testcase_15 AC 122 ms
85,748 KB
testcase_16 WA -
testcase_17 AC 117 ms
85,416 KB
testcase_18 WA -
testcase_19 AC 127 ms
89,156 KB
testcase_20 AC 129 ms
88,720 KB
testcase_21 AC 131 ms
88,856 KB
testcase_22 AC 121 ms
85,836 KB
testcase_23 AC 121 ms
85,704 KB
testcase_24 AC 114 ms
85,460 KB
testcase_25 AC 1,971 ms
196,560 KB
testcase_26 AC 1,305 ms
158,660 KB
testcase_27 AC 1,303 ms
178,900 KB
testcase_28 AC 355 ms
102,388 KB
testcase_29 AC 2,109 ms
200,608 KB
testcase_30 AC 1,346 ms
158,620 KB
testcase_31 AC 889 ms
143,076 KB
testcase_32 AC 142 ms
89,616 KB
testcase_33 AC 196 ms
99,704 KB
testcase_34 AC 310 ms
113,876 KB
testcase_35 AC 1,089 ms
151,148 KB
testcase_36 AC 216 ms
100,252 KB
testcase_37 AC 415 ms
121,896 KB
testcase_38 AC 332 ms
98,464 KB
testcase_39 AC 1,387 ms
157,956 KB
testcase_40 AC 708 ms
118,624 KB
testcase_41 AC 1,170 ms
149,400 KB
testcase_42 AC 236 ms
94,740 KB
testcase_43 AC 243 ms
93,884 KB
testcase_44 AC 548 ms
109,140 KB
testcase_45 AC 1,749 ms
214,964 KB
testcase_46 AC 1,816 ms
246,892 KB
testcase_47 TLE -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
input = sys.stdin.readline
#n = int(input())
#alist = list(map(int,input().split()))
#alist = []
#s = input()
h,w,T = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
sx,sy = map(lambda x:int(x)-1,input().split())
gx,gy = map(lambda x:int(x)-1,input().split())
grid = [list(map(int,list(input().rstrip()))) for i in range(h)]
start = (sx,sy,0)
d = collections.deque()
dist = [[[10**18 for i in range(T+1)] for j in range(w)] for feufr in range(h)]
d.append(start)
dist[sx][sy][0] = 0
dxy = [[-1,0],[1,0],[0,-1],[0,1],[0,0]]
while d:
    x,y,t = d.popleft()
    if t == T:
        continue
    for dx,dy in dxy:
        if 0 <= x+dx < h and 0 <= y+dy < w:
            z = grid[x+dx][y+dy]
            zz = (z - (t + 1)) % (z + 1)
            if zz >= 1 and dist[x+dx][y+dy][t+1] > dist[x][y][t] + 1:
                dist[x+dx][y+dy][t+1] = dist[x][y][t] + 1
                d.append((x+dx,y+dy,t+1))
ans = 10**18
for i in range(T+1):
    ans = min(ans,dist[gx][gy][i])
print('Yes' if ans <= T else 'No')
0