結果

問題 No.2542 Yokan for Two
ユーザー kakel-sankakel-san
提出日時 2023-11-24 21:49:37
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 1,123 bytes
コンパイル時間 8,444 ms
コンパイル使用メモリ 166,112 KB
実行使用メモリ 188,128 KB
最終ジャッジ日時 2024-09-26 09:08:07
合計ジャッジ時間 14,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
30,336 KB
testcase_01 AC 62 ms
30,080 KB
testcase_02 AC 63 ms
30,336 KB
testcase_03 AC 91 ms
33,664 KB
testcase_04 AC 82 ms
34,304 KB
testcase_05 AC 105 ms
33,920 KB
testcase_06 AC 64 ms
30,592 KB
testcase_07 AC 137 ms
34,176 KB
testcase_08 AC 84 ms
34,048 KB
testcase_09 AC 136 ms
34,048 KB
testcase_10 AC 74 ms
32,256 KB
testcase_11 AC 76 ms
32,896 KB
testcase_12 AC 96 ms
34,048 KB
testcase_13 AC 71 ms
32,000 KB
testcase_14 AC 136 ms
34,176 KB
testcase_15 AC 140 ms
34,304 KB
testcase_16 AC 140 ms
33,920 KB
testcase_17 AC 137 ms
34,176 KB
testcase_18 AC 143 ms
33,920 KB
testcase_19 AC 107 ms
33,792 KB
testcase_20 AC 104 ms
33,920 KB
testcase_21 AC 103 ms
33,920 KB
testcase_22 AC 104 ms
34,048 KB
testcase_23 AC 103 ms
33,920 KB
testcase_24 AC 66 ms
31,232 KB
testcase_25 AC 68 ms
32,128 KB
testcase_26 AC 69 ms
32,256 KB
testcase_27 AC 70 ms
32,384 KB
testcase_28 AC 70 ms
32,512 KB
testcase_29 AC 81 ms
33,792 KB
testcase_30 AC 141 ms
34,304 KB
testcase_31 AC 142 ms
33,976 KB
testcase_32 AC 142 ms
34,048 KB
testcase_33 AC 142 ms
34,176 KB
testcase_34 AC 140 ms
34,048 KB
testcase_35 AC 141 ms
34,176 KB
testcase_36 AC 142 ms
34,176 KB
testcase_37 AC 142 ms
33,920 KB
testcase_38 AC 141 ms
34,048 KB
testcase_39 AC 142 ms
34,048 KB
testcase_40 AC 143 ms
34,176 KB
testcase_41 AC 141 ms
34,176 KB
testcase_42 AC 144 ms
33,920 KB
testcase_43 AC 142 ms
188,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 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();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (l, n) = (c[0], c[1]);
        var x = NList;
        var dp = new bool[l * 2 + 1];
        dp[x[0] + x[^1]] = true;
        for (var i = 1; i < x.Length; ++i)
        {
            var ndp = new bool[dp.Length];
            for (var j = 0; j < dp.Length; ++j)
            {
                var nj = j + x[i] - x[i - 1];
                if (nj >= 0 && nj < ndp.Length) ndp[nj] |= dp[j];
                nj = j - x[i] + x[i - 1];
                if (nj >= 0 && nj < ndp.Length) ndp[nj] |= dp[j];
            }
            dp = ndp;
        }
        for (var i = 0; i <= l; ++i)
        {
            if (dp[l + i] || dp[l - i])
            {
                WriteLine(i);
                return;
            }
        }
    }
}
0