結果

問題 No.2542 Yokan for Two
ユーザー heno239heno239
提出日時 2024-02-05 18:04:11
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 1,726 bytes
コンパイル時間 7,716 ms
コンパイル使用メモリ 169,032 KB
実行使用メモリ 202,280 KB
最終ジャッジ日時 2024-09-28 11:41:23
合計ジャッジ時間 16,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
30,080 KB
testcase_01 AC 56 ms
30,336 KB
testcase_02 AC 54 ms
30,208 KB
testcase_03 AC 126 ms
45,952 KB
testcase_04 AC 97 ms
34,756 KB
testcase_05 AC 167 ms
43,136 KB
testcase_06 AC 64 ms
33,400 KB
testcase_07 AC 245 ms
44,836 KB
testcase_08 AC 117 ms
42,368 KB
testcase_09 AC 228 ms
45,184 KB
testcase_10 AC 82 ms
34,888 KB
testcase_11 AC 90 ms
34,944 KB
testcase_12 AC 145 ms
42,840 KB
testcase_13 AC 78 ms
34,800 KB
testcase_14 AC 241 ms
45,636 KB
testcase_15 AC 248 ms
45,984 KB
testcase_16 AC 250 ms
45,736 KB
testcase_17 AC 233 ms
44,532 KB
testcase_18 AC 260 ms
45,868 KB
testcase_19 AC 167 ms
41,920 KB
testcase_20 AC 150 ms
34,944 KB
testcase_21 AC 155 ms
34,960 KB
testcase_22 AC 153 ms
34,816 KB
testcase_23 AC 153 ms
34,944 KB
testcase_24 AC 76 ms
36,608 KB
testcase_25 AC 83 ms
40,832 KB
testcase_26 AC 81 ms
40,940 KB
testcase_27 AC 85 ms
40,064 KB
testcase_28 AC 86 ms
40,672 KB
testcase_29 AC 117 ms
45,184 KB
testcase_30 AC 247 ms
46,592 KB
testcase_31 AC 264 ms
46,560 KB
testcase_32 AC 248 ms
45,848 KB
testcase_33 AC 256 ms
45,952 KB
testcase_34 AC 261 ms
46,080 KB
testcase_35 AC 270 ms
45,952 KB
testcase_36 AC 273 ms
45,920 KB
testcase_37 AC 257 ms
45,824 KB
testcase_38 AC 263 ms
48,020 KB
testcase_39 AC 264 ms
45,984 KB
testcase_40 AC 257 ms
45,968 KB
testcase_41 AC 252 ms
46,208 KB
testcase_42 AC 260 ms
45,756 KB
testcase_43 AC 263 ms
202,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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.Collections;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

internal class Program
{
    private const long mod = 998244353;

    
    public static void Main(string[] args)
    {
        var line= Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        int L = line[0], n = line[1];
        int [] x= Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        var dpup = mkar(2 * L + 1, 0);
        dpup[L] = 1;
        var dpdow = mkar(2 * L + 1, 0);
        void upd(int len)
        {
            var ndpup = mkar(2 * L + 1, 0);
            var ndpdow = mkar(2 * L + 1, 0);
            for (int i = 0; i <= 2 * L; i++)
            {
                if (dpup[i]>0)
                {
                    ndpup[i + len] = ndpdow[i + len] = 1;
                }

                if (dpdow[i] > 0)
                {
                    ndpup[i - len] = ndpdow[i - len] = 1;
                }
            }

            dpup = ndpup;
            dpdow = ndpdow;
        }

        for (int i = 0; i < n; i++)
        {
            int len = x[i];
            if (i > 0) len -= x[i - 1];
            upd(len);
        }

        int ans = L;
        int las = L - x[n - 1];
        for (int i = 0; i <= 2 * L; i++)
        {
            if (dpdow[i]>0)
            {
                int val = i - las;
                val -= L;
                val = Math.Abs(val);
                ans = Math.Min(ans, val);
            }
        }
        Console.WriteLine(ans);
    }

    public static List<int> mkar(int n, int val)
    {
        List<int> res = new List<int>(n);
        for(int i=0;i<n;i++)res.Add(val);
        return res;
    }
}
0