結果
問題 | No.2411 Reverse Directions |
ユーザー | mymelochan |
提出日時 | 2023-08-11 23:21:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,864 bytes |
コンパイル時間 | 295 ms |
コンパイル使用メモリ | 81,760 KB |
実行使用メモリ | 159,788 KB |
最終ジャッジ日時 | 2024-11-18 18:47:37 |
合計ジャッジ時間 | 25,636 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | WA | - |
ソースコード
############################################################# import sys sys.setrecursionlimit(10**7) from heapq import heappop,heappush from collections import deque,defaultdict,Counter from bisect import bisect_left, bisect_right from itertools import product,combinations,permutations from math import sin,cos #from math import isqrt #DO NOT USE PyPy ipt = sys.stdin.readline iin = lambda :int(ipt()) lmin = lambda :list(map(int,ipt().split())) inf = 1<<30 ############################################################# H,W,K,L,R = lmin() S = [input() for _ in range(H)] if (R-L)%2 == 0: print("NO") exit() costs = [[inf]*W for _ in range(H)] costt = [[inf]*W for _ in range(H)] costs[0][0] = 0 costt[H-1][W-1] = 0 d = [(-1,0,"D"),(0,-1,"R"),(1,0,"U"),(0,1,"L")] d2 = [(-1,0,"U"),(0,-1,"L"),(1,0,"D"),(0,1,"R")] dq = deque([(0,0,0)]) while dq: i,j,c = dq.pop() for di,dj,u in d: ni,nj = i+di,j+dj if 0 <= ni < H and 0 <= nj < W and S[ni][nj] == ".": if costs[ni][nj] != inf: continue costs[ni][nj] = c+1 dq.appendleft((ni,nj,c+1)) dq = deque([(H-1,W-1,0)]) while dq: i,j,c = dq.pop() for di,dj,u in d: ni,nj = i+di,j+dj if 0 <= ni < H and 0 <= nj < W and S[ni][nj] == ".": if costt[ni][nj] != inf: continue costt[ni][nj] = c+1 dq.appendleft((ni,nj,c+1)) if costs[H-1][W-1] == inf: print("NO") exit() for i in range(1,H-1): for j in range(1,W-1): r1 = (i+j)%2 r2 = (L-1)%2 r3 = (K-R)%2 r4 = (H+W-i-j)%2 if r1 == r2 and r4 == r3: if L-1 <= costs[i][j] and K-R <= costt[i][j]: if S[i][j-1] == "." and S[i][j] == "." and S[i][j+1] == ".": ci,cj = i,j ans = [] while True: #print(ci,cj) if ci == 0 and cj == 0: break for di,dj,u in d: ni,nj = ci+di,cj+dj if 0 <= ni < H and 0 <= nj < W and S[ni][nj] == ".": if costs[ni][nj] == costs[ci][cj]-1: ci = ni cj = nj ans.append(u) break #print(ans) ans.reverse() for _ in range((R-L+1)//2): ans.append("L") ans.append("R") #print(ans) ci,cj = i,j while True: if ci == H-1 and cj == W-1: break for di,dj,u in d2: ni,nj = ci+di,cj+dj if 0 <= ni < H and 0 <= nj < W and S[ni][nj] == ".": if costt[ni][nj] == costt[ci][cj]-1: ci = ni cj = nj ans.append(u) break print("YES") print("".join(ans)) exit() if S[i-1][j] == "." and S[i][j] == "." and S[i+1][j] == ".": ci,cj = i,j ans = [] while True: if ci == 0 and cj == 0: break for di,dj,u in d: ni,nj = ci+di,cj+dj if 0 <= ni < H and 0 <= nj < W and S[ni][nj] == ".": if costs[ni][nj] == costs[ci][cj]-1: ci = ni cj = nj ans.append(u) break ans.reverse() for _ in range((R-L+1)//2): ans.append("U") ans.append("D") ci,cj = i,j while True: if ci == H-1 and cj == W-1: break for di,dj,u in d2: ni,nj = ci+di,cj+dj if 0 <= ni < H and 0 <= nj < W: if costt[ni][nj] == costt[ci][cj]-1: ci = ni cj = nj ans.append(u) break print("YES") print("".join(ans)) exit() print("NO")