結果
問題 | No.2411 Reverse Directions |
ユーザー | flygon |
提出日時 | 2023-08-11 22:35:42 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,880 bytes |
コンパイル時間 | 437 ms |
コンパイル使用メモリ | 82,360 KB |
実行使用メモリ | 849,340 KB |
最終ジャッジ日時 | 2024-11-18 17:27:26 |
合計ジャッジ時間 | 14,513 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 42 ms
56,216 KB |
testcase_02 | AC | 42 ms
55,752 KB |
testcase_03 | AC | 44 ms
55,304 KB |
testcase_04 | WA | - |
testcase_05 | AC | 39 ms
55,848 KB |
testcase_06 | AC | 40 ms
55,428 KB |
testcase_07 | AC | 84 ms
83,648 KB |
testcase_08 | AC | 39 ms
56,836 KB |
testcase_09 | AC | 42 ms
56,472 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 42 ms
55,580 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 72 ms
77,248 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 42 ms
55,816 KB |
testcase_20 | WA | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 49 ms
56,116 KB |
testcase_24 | WA | - |
testcase_25 | AC | 41 ms
56,292 KB |
testcase_26 | AC | 60 ms
72,960 KB |
testcase_27 | TLE | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 127 ms
81,928 KB |
ソースコード
import sys # sys.setrecursionlimit(5*10**5) input = sys.stdin.readline from collections import defaultdict, deque, Counter from heapq import heappop, heappush from bisect import bisect_left, bisect_right from math import gcd h,w,k,l,r = map(int,input().split()) if (r-l + 1) % 2 != 0: print("No") exit() s = [input().rstrip() for i in range(h)] dx = [0,0,1,-1] dy = [1,-1,0,0] def bfs(x,y): que = deque([(x,y)]) depth = [[-1 for i in range(w)] for i in range(h)] depth[x][y] = 0 pre = [[-1]*w for i in range(h)] while que: x,y= que.popleft() for i in range(4): nx = x+dx[i] ny = y+dy[i] if not(0<=nx<h and 0<=ny<w): continue if s[nx][ny] == "#": continue if depth[nx][ny] == -1: depth[nx][ny] = depth[x][y] + 1 pre[nx][ny] = x*w+y que.append((nx,ny)) return depth,pre cnt = l-1 + k-r d1,p1 = bfs(0,0) d2,p2 = bfs(h-1,w-1) mid = [] mpos = () for i in range(h): for j in range(w): ok = 1 ok &= d1[i][j] % 2 == (l-1)%2 ok &= d2[i][j] % 2 == (k-r)%2 ok &= d1[i][j] <= (l-1) ok &= d2[i][j] <= (k-r) if not ok: continue if i != 0 and i != h-1 and s[i+1][j] == "." and s[i-1][j] == ".": mid = ["UD"]*((r-l+1)//2) mpos = [i,j] if j != 0 and j != w-1 and s[i][j-1] == "." and s[i][j+1] == ".": mid = ["LR"]*((r-l+1)//2) mpos = [i,j] if mid:break if mid:break if not mid: print("No") exit() pre = [] nowx,nowy = mpos while [nowx,nowy] != [0,0]: ppos = p1[nowx][nowy] nowx, nowy = ppos//w, ppos%w pre.append([nowx,nowy]) pre = pre[::-1] pre.append(mpos) suf = [mpos] nowx,nowy = mpos while [nowx,nowy] != [h-1,w-1]: ppos = p2[nowx][nowy] nowx, nowy = ppos//w, ppos%w suf.append([nowx,nowy]) anspre = [] anssuf = [] for i in range(1,len(pre)): cx,cy = pre[i] px,py = pre[i-1] if cx == px + 1: anspre.append("D") if cx == px - 1: anspre.append("U") if cy == py + 1: anspre.append("R") if cy == py - 1: anspre.append("L") for i in range(1,len(suf)): cx,cy = suf[i] px,py = suf[i-1] if cx == px + 1: anssuf.append("D") if cx == px - 1: anssuf.append("U") if cy == py + 1: anssuf.append("R") if cy == py - 1: anssuf.append("L") if len(anspre) <= l - 1: dif = l-1-len(anspre) if anspre[0] == "R": tmp = ["RL"]*(dif // 2) if anspre[0] == "D": tmp = ["DU"]*(dif // 2) anspre = tmp + anspre if len(anssuf) <= k-r: dif = k-r-len(anssuf) if anssuf[-1] == "D": tmp = ["UD"]*(dif // 2) else: tmp = ["LR"]*(dif // 2) anssuf = anssuf + tmp ans = anspre + mid + anssuf print("".join(ans))