結果

問題 No.2411 Reverse Directions
ユーザー 👑 kakel-sankakel-san
提出日時 2023-08-11 22:55:28
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 5,274 bytes
コンパイル時間 969 ms
コンパイル使用メモリ 110,208 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-04-29 14:04:56
合計ジャッジ時間 3,835 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
19,072 KB
testcase_01 AC 30 ms
19,072 KB
testcase_02 AC 30 ms
18,944 KB
testcase_03 AC 29 ms
19,072 KB
testcase_04 AC 50 ms
22,528 KB
testcase_05 AC 29 ms
19,072 KB
testcase_06 AC 30 ms
19,072 KB
testcase_07 AC 39 ms
22,272 KB
testcase_08 AC 29 ms
18,816 KB
testcase_09 AC 30 ms
19,072 KB
testcase_10 AC 76 ms
26,752 KB
testcase_11 AC 34 ms
19,072 KB
testcase_12 AC 76 ms
23,040 KB
testcase_13 AC 30 ms
18,944 KB
testcase_14 AC 46 ms
20,736 KB
testcase_15 AC 39 ms
20,096 KB
testcase_16 AC 32 ms
19,072 KB
testcase_17 AC 49 ms
20,224 KB
testcase_18 AC 43 ms
20,608 KB
testcase_19 AC 30 ms
18,944 KB
testcase_20 AC 45 ms
20,012 KB
testcase_21 AC 44 ms
20,224 KB
testcase_22 AC 65 ms
21,632 KB
testcase_23 AC 30 ms
19,200 KB
testcase_24 AC 72 ms
21,704 KB
testcase_25 AC 29 ms
19,072 KB
testcase_26 AC 32 ms
19,072 KB
testcase_27 AC 39 ms
19,584 KB
testcase_28 AC 62 ms
23,168 KB
testcase_29 AC 82 ms
24,576 KB
testcase_30 AC 69 ms
23,296 KB
testcase_31 AC 56 ms
20,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (h, w, k, l, r) = (c[0], c[1], c[2], c[3], c[4]);
        var map = SList(h);
        if ((r - l) % 2 == 0 || l == 1 || r == k)
        {
            WriteLine("No");
            return;
        }
        var vrev = new bool[h][];
        for (var i = 0; i < vrev.Length; ++i)
        {
            vrev[i] = new bool[w];
            for (var j = 0; j < vrev[i].Length; ++j)
            {
                if (i > 0 && i + 1 < h && map[i - 1][j] == '.' && map[i][j] == '.' && map[i + 1][j] == '.') vrev[i][j] = true;
            }
        }
        var hrev = new bool[h][];
        for (var i = 0; i < hrev.Length; ++i)
        {
            hrev[i] = new bool[w];
            for (var j = 1; j + 1 < hrev[i].Length; ++j)
            {
                if (map[i][j - 1] == '.' && map[i][j] == '.' && map[i][j + 1] == '.') hrev[i][j] = true;
            }
        }
        var slen = new int[h][];
        for (var i = 0; i < slen.Length; ++i) slen[i] = Enumerable.Repeat(int.MaxValue, w).ToArray();
        slen[0][0] = 0;
        var q = new Queue<(int x, int y)>();
        q.Enqueue((0, 0));
        while (q.Count > 0)
        {
            var cur = q.Dequeue();
            for (var i = 0; i < mx.Length; ++i)
            {
                var nx = cur.x + mx[i];
                var ny = cur.y + my[i];
                if (nx < 0 || nx >= h || ny < 0 || ny >= w) continue;
                if (map[nx][ny] != '.') continue;
                if (slen[nx][ny] <= slen[cur.x][cur.y] + 1) continue;
                slen[nx][ny] = slen[cur.x][cur.y] + 1;
                q.Enqueue((nx, ny));
            }
        }
        var tlen = new int[h][];
        for (var i = 0; i < tlen.Length; ++i) tlen[i] = Enumerable.Repeat(int.MaxValue, w).ToArray();
        tlen[h - 1][w - 1] = 0;
        q.Enqueue((h - 1, w - 1));
        while (q.Count > 0)
        {
            var cur = q.Dequeue();
            for (var i = 0; i < mx.Length; ++i)
            {
                var nx = cur.x + mx[i];
                var ny = cur.y + my[i];
                if (nx < 0 || nx >= h || ny < 0 || ny >= w) continue;
                if (map[nx][ny] != '.') continue;
                if (tlen[nx][ny] <= tlen[cur.x][cur.y] + 1) continue;
                tlen[nx][ny] = tlen[cur.x][cur.y] + 1;
                q.Enqueue((nx, ny));
            }
        }
        for (var i = 0; i < h; ++i) for (var j = 0; j < w; ++j)
        {
            if (slen[i][j] <= l - 1 && (l - 1 - slen[i][j]) % 2 == 0 &&
                tlen[i][j] <= k - r && (k - r - tlen[i][j]) % 2 == 0 && (vrev[i][j] || hrev[i][j]))
            {
                var ans = Reverse(Move(0, 0, i, j, slen));
                while (ans.Count + 1 < l)
                {
                    ans.Add(Rev(ans[ans.Count - 1]));
                }
                for (var p = 0; p < r - l + 1; p += 2)
                {
                    if (vrev[i][j])
                    {
                        ans.Add('U');
                        ans.Add('D');
                    }
                    else
                    {
                        ans.Add('L');
                        ans.Add('R');
                    }
                }
                ans.AddRange(Move(h - 1, w - 1, i, j, tlen));
                while (ans.Count < k)
                {
                    ans.Add(Rev(ans[ans.Count - 1]));
                }
                WriteLine("Yes");
                WriteLine(string.Concat(ans));
                return;
            }
        }
        WriteLine("No");
    }
    static int[] mx = new int[] { 0, 0, -1, 1 };
    static int[] my = new int[] { -1, 1, 0, 0 };
    static string mc = "LRUD";
    static List<char> Move(int sx, int sy, int tx, int ty, int[][] len)
    {
        var cx = tx;
        var cy = ty;
        var ans = new List<char>();
        while (cx != sx || cy != sy)
        {
            for (var i = 0; i < mx.Length; ++i)
            {
                var nx = cx + mx[i];
                var ny = cy + my[i];
                if (nx < 0 || nx >= len.Length || ny < 0 || ny >= len[nx].Length) continue;
                if (len[nx][ny] < len[cx][cy])
                {
                    ans.Add(mc[i]);
                    cx = nx;
                    cy = ny;
                    break;
                }
            }
        }
        return ans;
    }
    static List<char> Reverse(List<char> list)
    {
        var ans = list.Select(c => Rev(c)).ToList();
        ans.Reverse();
        return ans;
    }
    static char Rev(char c)
    {
        if (c == 'L') return 'R';
        if (c == 'R') return 'L';
        if (c == 'U') return 'D';
        return 'U';
    }
}
0