結果

問題 No.2411 Reverse Directions
ユーザー ニックネームニックネーム
提出日時 2023-08-11 22:33:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 1,761 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 149,184 KB
最終ジャッジ日時 2024-11-18 17:20:18
合計ジャッジ時間 4,722 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,816 KB
testcase_01 AC 38 ms
54,940 KB
testcase_02 AC 37 ms
55,228 KB
testcase_03 AC 38 ms
54,516 KB
testcase_04 AC 39 ms
57,472 KB
testcase_05 AC 39 ms
54,444 KB
testcase_06 AC 39 ms
55,808 KB
testcase_07 AC 143 ms
124,496 KB
testcase_08 AC 39 ms
55,492 KB
testcase_09 AC 39 ms
54,756 KB
testcase_10 AC 213 ms
149,184 KB
testcase_11 AC 38 ms
55,012 KB
testcase_12 AC 226 ms
132,984 KB
testcase_13 AC 41 ms
56,820 KB
testcase_14 AC 100 ms
86,840 KB
testcase_15 AC 55 ms
68,560 KB
testcase_16 AC 70 ms
79,276 KB
testcase_17 AC 108 ms
89,728 KB
testcase_18 AC 60 ms
74,232 KB
testcase_19 AC 38 ms
54,248 KB
testcase_20 AC 103 ms
88,304 KB
testcase_21 AC 102 ms
89,592 KB
testcase_22 AC 156 ms
108,864 KB
testcase_23 AC 42 ms
56,436 KB
testcase_24 AC 218 ms
130,428 KB
testcase_25 AC 40 ms
55,216 KB
testcase_26 AC 54 ms
72,728 KB
testcase_27 AC 101 ms
86,348 KB
testcase_28 AC 124 ms
96,792 KB
testcase_29 AC 204 ms
128,616 KB
testcase_30 AC 141 ms
103,012 KB
testcase_31 AC 182 ms
115,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
h,w,k,l,r = map(int,input().split())
s = [input()+"#" for _ in range(h)]+["#"*(w+1)]
if l%2==r%2: exit(print("No"))
def f(x,y):
    d = [[10**9]*(w+1) for _ in range(h+1)]
    c = [[[0,0] for _ in range(w+1)] for _ in range(h+1)]
    d[x][y] = 0; dq = deque([(x,y)])
    while dq:
        px,py = dq.popleft()
        for dx,dy in ((-1,0),(0,-1),(0,1),(1,0)):
            nx,ny = px+dx,py+dy
            if s[nx][ny]=="." and d[nx][ny]==10**9:
                d[nx][ny] = d[px][py]+1
                c[nx][ny] = [dx,dy]
                dq.append((nx,ny))
    return d,c
def g(x,y):
    t1 = []; px,py = x,y
    while (px,py)!=(0,0):
        dx,dy = c1[px][py]
        if (dx,dy)==(-1,0): t1.append("U")
        if (dx,dy)==(0,-1): t1.append("L")
        if (dx,dy)==(0,1): t1.append("R")
        if (dx,dy)==(1,0): t1.append("D")
        px -= dx; py -= dy
    t2 = []; px,py = x,y
    while (px,py)!=(h-1,w-1):
        dx,dy = c2[px][py]
        if (dx,dy)==(-1,0): t2.append("D")
        if (dx,dy)==(0,-1): t2.append("R")
        if (dx,dy)==(0,1): t2.append("L")
        if (dx,dy)==(1,0): t2.append("U")
        px -= dx; py -= dy
    return "".join(t1[::-1]),"".join(t2)
d1,c1 = f(0,0); d2,c2 = f(h-1,w-1)
for i in range(h):
    for j in range(w):
        if d1[i][j]>l-1 or d1[i][j]%2!=(l-1)%2 or\
            d2[i][j]>k-r or d2[i][j]%2!=(k-r)%2 or\
            s[i][j]=="#": continue
        if s[i-1][j]==s[i+1][j]==".":
            t1,t2 = g(i,j)
            print("Yes")
            print(t1+"UD"*((k-len(t1)-len(t2))//2)+t2)
            exit()
        if s[i][j-1]==s[i][j+1]==".":
            t1,t2 = g(i,j)
            print("Yes")
            print(t1+"LR"*((k-len(t1)-len(t2))//2)+t2)
            exit()
print("No")
0