Submission #8814400


Source Code Expand

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

from heapq import heappush, heappop

H,W,K = map(int,readline().split())
S = readline().rstrip().decode('utf-8')
A = ['#' * (W+2)]
A += ['#' + row + '#' for row in read().decode('utf-8').split()]
A += ['#' * (W+2)]

A = list(''.join(A))
start = A.index('S')
goal = A.index('G')
A = [x != '#' for x in A]

INF = 10 ** 18
S += S
wait_U = [INF] * (K+K+1)
wait_D = [INF] * (K+K+1)
wait_R = [INF] * (K+K+1)
wait_L = [INF] * (K+K+1)
for n in range(K+K-1,-1,-1):
    s = S[n]
    wait_U[n] = 0 if s == 'U' else wait_U[n+1] + 1
    wait_D[n] = 0 if s == 'D' else wait_D[n+1] + 1
    wait_R[n] = 0 if s == 'R' else wait_R[n+1] + 1
    wait_L[n] = 0 if s == 'L' else wait_L[n+1] + 1

H += 2; W += 2
dist = [INF] * (H * W)
q = [(0,start)]
dist[start] = 0
while q:
    dv,v = heappop(q)
    if dist[v] < dv:
        continue
    dvK = dv % K
    w = v + 1
    if A[w]:
        dw = dv + wait_R[dvK] + 1
        if dist[w] > dw:
            dist[w] = dw
            heappush(q,(dw,w))
    w = v - 1
    if A[w]:
        dw = dv + wait_L[dvK] + 1
        if dist[w] > dw:
            dist[w] = dw
            heappush(q,(dw,w))
    w = v + W
    if A[w]:
        dw = dv + wait_D[dvK] + 1
        if dist[w] > dw:
            dist[w] = dw
            heappush(q,(dw,w))
    w = v - W
    if A[w]:
        dw = dv + wait_U[dvK] + 1
        if dist[w] > dw:
            dist[w] = dw
            heappush(q,(dw,w))

answer = dist[goal]
if answer >= INF:
    answer = -1
print(answer)

Submission Info

Submission Time
Task E - 迷路
User maspy
Language PyPy3 (2.4.0)
Score 0
Code Size 1651 Byte
Status TLE
Exec Time 2116 ms
Memory 234292 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 500
Status AC
AC × 19
TLE × 25
Set Name Test Cases
Sample
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 161 ms 38256 KB
02.txt AC 160 ms 38256 KB
03.txt AC 159 ms 38256 KB
04.txt AC 161 ms 38256 KB
05.txt AC 163 ms 38256 KB
06.txt TLE 2116 ms 234292 KB
07.txt TLE 2116 ms 232116 KB
08.txt TLE 2113 ms 160172 KB
09.txt TLE 2115 ms 232500 KB
10.txt TLE 2112 ms 151764 KB
11.txt TLE 2111 ms 144436 KB
12.txt TLE 2112 ms 147124 KB
13.txt TLE 2111 ms 144452 KB
14.txt TLE 2111 ms 146996 KB
15.txt TLE 2115 ms 218676 KB
16.txt TLE 2115 ms 230196 KB
17.txt TLE 2111 ms 146252 KB
18.txt TLE 2114 ms 226100 KB
19.txt TLE 2112 ms 156064 KB
20.txt TLE 2112 ms 146996 KB
21.txt TLE 2113 ms 183348 KB
22.txt TLE 2111 ms 149044 KB
23.txt TLE 2110 ms 146996 KB
24.txt TLE 2114 ms 211252 KB
25.txt TLE 2110 ms 146996 KB
26.txt TLE 2110 ms 144436 KB
27.txt TLE 2112 ms 144308 KB
28.txt TLE 2111 ms 144308 KB
29.txt TLE 2111 ms 144436 KB
30.txt TLE 2111 ms 146996 KB
31.txt AC 363 ms 141236 KB
32.txt AC 360 ms 141108 KB
33.txt AC 360 ms 144052 KB
34.txt AC 359 ms 141236 KB
35.txt AC 357 ms 141236 KB
36.txt AC 359 ms 141236 KB
37.txt AC 357 ms 141236 KB
38.txt AC 360 ms 141236 KB
39.txt AC 359 ms 141236 KB
40.txt AC 430 ms 146740 KB
41.txt AC 160 ms 38256 KB
s1.txt AC 159 ms 38256 KB
s2.txt AC 161 ms 38256 KB
s3.txt AC 159 ms 38256 KB