結果

問題 No.1508 Avoid being hit
ユーザー kakel-sankakel-san
提出日時 2024-06-24 23:20:19
言語 C#
(.NET 8.0.203)
結果
MLE  
実行時間 -
コード長 2,761 bytes
コンパイル時間 13,995 ms
コンパイル使用メモリ 168,600 KB
実行使用メモリ 650,812 KB
最終ジャッジ日時 2024-06-24 23:21:07
合計ジャッジ時間 28,714 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (96 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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 int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    static int[] NMi => ReadLine().Split().Select(c => int.Parse(c) - 1).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, q) = (c[0], c[1]);
        var a = NList;
        var b = NList;
        var ans = Move(n, q, a, b);
        WriteLine(ans);
    }
    static string Move(int n, int q, int[] _a, int[] _b)
    {
        var a = _a.Select(ai => ai - 1).ToArray();
        var b = _b.Select(bi => bi - 1).ToArray();
        var dp = Enumerable.Repeat(true, n).ToArray();
        var cand = new List<int>();
        var moves = new List<(int from, int to)>[q];
        for (var i = 0; i < moves.Length; ++i) moves[i] = new List<(int from, int to)>();
        for (var i = 0; i < q; ++i)
        {
            var ncand = new List<int>();
            foreach (var ci in cand)
            {
                if (dp[ci] || a[i] == ci || b[i] == ci) continue;
                if (ci > 0 && dp[ci - 1])
                {
                    moves[i].Add((ci - 1, ci));
                    ncand.Add(ci - 1);
                    if (ci + 1 < n) ncand.Add(ci + 1);
                }
                else if (ci + 1 < n && dp[ci + 1])
                {
                    moves[i].Add((ci + 1, ci));
                    ncand.Add(ci + 1);
                    if (ci > 0) ncand.Add(ci - 1);
                }
            }
            foreach (var mi in moves[i]) dp[mi.to] = true;
            dp[a[i]] = false;
            ncand.Add(a[i]);
            dp[b[i]] = false;
            ncand.Add(b[i]);
            cand = ncand;
        }
        if (dp.Any(f => f))
        {
            var ans = new List<int>();
            var pos = 0;
            for (var i = 0; i < dp.Length; ++i) if (dp[i])
            {
                pos = i;
                break;
            }
            ans.Add(pos);
            for (var i = q - 1; i >= 0; --i)
            {
                for (var j = 0; j < moves[i].Count; ++j) if (moves[i][j].to == pos)
                {
                    pos = moves[i][j].from;
                    break;
                }
                ans.Add(pos);
            }
            ans.Reverse();
            return $"YES\n{string.Join("\n", ans.Select(ai => ai + 1))}";
        }
        else
        {
            return "NO";
        }
    }
}
0