結果

問題 No.2646 Cycle Maze
ユーザー hato336hato336
提出日時 2024-02-25 20:36:10
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,181 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 235,480 KB
最終ジャッジ日時 2024-09-29 11:13:43
合計ジャッジ時間 26,578 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
89,408 KB
testcase_01 AC 120 ms
85,760 KB
testcase_02 AC 122 ms
89,192 KB
testcase_03 AC 119 ms
85,876 KB
testcase_04 RE -
testcase_05 AC 147 ms
89,824 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 112 ms
86,144 KB
testcase_09 RE -
testcase_10 AC 140 ms
89,968 KB
testcase_11 AC 141 ms
90,168 KB
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 129 ms
89,712 KB
testcase_18 WA -
testcase_19 AC 121 ms
89,376 KB
testcase_20 AC 120 ms
89,296 KB
testcase_21 RE -
testcase_22 AC 110 ms
85,900 KB
testcase_23 AC 122 ms
89,296 KB
testcase_24 AC 122 ms
89,412 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
権限があれば一括ダウンロードができます

ソースコード

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(210)] 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()
    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)%210))
ans = 10**18
for i in range(210):
    ans = min(ans,dist[gx][gy][i])
print('Yes' if ans <= T else 'No')
0