結果

問題 No.2890 Chiffon
ユーザー tobisatistobisatis
提出日時 2024-09-13 22:26:52
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 2,735 bytes
コンパイル時間 9,698 ms
コンパイル使用メモリ 166,288 KB
実行使用メモリ 209,040 KB
最終ジャッジ日時 2024-09-13 22:27:13
合計ジャッジ時間 16,081 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,336 KB
testcase_01 AC 71 ms
30,080 KB
testcase_02 AC 59 ms
30,464 KB
testcase_03 AC 60 ms
30,976 KB
testcase_04 AC 59 ms
30,208 KB
testcase_05 AC 59 ms
29,932 KB
testcase_06 AC 59 ms
30,464 KB
testcase_07 AC 60 ms
30,464 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 59 ms
30,336 KB
testcase_11 WA -
testcase_12 AC 60 ms
30,464 KB
testcase_13 AC 59 ms
30,192 KB
testcase_14 AC 59 ms
30,456 KB
testcase_15 AC 58 ms
30,464 KB
testcase_16 WA -
testcase_17 AC 61 ms
30,208 KB
testcase_18 AC 58 ms
30,464 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 148 ms
85,376 KB
testcase_23 AC 61 ms
30,592 KB
testcase_24 AC 59 ms
30,448 KB
testcase_25 AC 58 ms
30,848 KB
testcase_26 AC 60 ms
30,592 KB
testcase_27 AC 59 ms
29,932 KB
testcase_28 AC 61 ms
30,848 KB
testcase_29 AC 60 ms
30,464 KB
testcase_30 AC 60 ms
30,720 KB
testcase_31 AC 60 ms
30,592 KB
testcase_32 AC 61 ms
30,464 KB
testcase_33 AC 108 ms
54,784 KB
testcase_34 AC 107 ms
54,400 KB
testcase_35 AC 106 ms
54,400 KB
testcase_36 AC 107 ms
53,868 KB
testcase_37 AC 106 ms
54,652 KB
testcase_38 AC 106 ms
54,016 KB
testcase_39 AC 107 ms
54,784 KB
testcase_40 AC 108 ms
54,400 KB
testcase_41 AC 107 ms
54,400 KB
testcase_42 AC 107 ms
54,784 KB
testcase_43 AC 109 ms
54,912 KB
testcase_44 AC 108 ms
54,784 KB
testcase_45 AC 108 ms
54,656 KB
testcase_46 AC 108 ms
54,656 KB
testcase_47 AC 135 ms
54,656 KB
testcase_48 AC 107 ms
54,528 KB
testcase_49 AC 108 ms
54,528 KB
testcase_50 AC 109 ms
54,528 KB
testcase_51 AC 108 ms
54,384 KB
testcase_52 AC 107 ms
54,400 KB
testcase_53 WA -
testcase_54 AC 96 ms
209,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (94 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 #

namespace AtCoder;

#nullable enable

using System.Numerics;

static class Extensions
{
    public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray();
}

class AtCoder
{
    object? Solve()
    {
        var n = Int();
        var k = Int();
        var az = new int[k];
        {
            for (var i = 0; i < k; i++) az[i] = (Int() - 1) >> 1;
            var dz = new int[k];
            dz[0] = az[0] - az[k - 1] + n;
            for (var i = 1; i < k; i++) dz[i] = az[i] - az[i - 1];
            var dmin = dz.Min();
            var dmi = Array.IndexOf(dz, dmin);
            for (var j = 0; j < k; j++) az[j] = dz[(j + dmi) % k];
        }
        var ans = int.MaxValue;
        for (var s = 0; s < az[0]; s++)
        {
            bool F(int x)
            {
                var p = s;
                for (var i = 0; i < k; i++)
                {
                    var a = az[i];
                    if (p >= a) return false;
                    var l = x;
                    l -= a - p;
                    p = Math.Max(l, 0);
                }
                return p <= x;
            }
            int BinarySearch(int pass, int fail)
            {
                while (Math.Abs(pass - fail) > 1)
                {
                    var middle = (pass + fail) >> 1;
                    if (F(middle)) pass = middle; else fail = middle;
                }
                return pass;
            }
            var sns = BinarySearch(0, n + 1);
            ans = Math.Min(ans, sns);
        }
        return ans * 2;
    }

    public static void Main() => new AtCoder().Run();
    public void Run()
    {
        var res = Solve();
        if (res != null)
        {
            if (res is bool yes) res = yes ? "Yes" : "No";
            sw.WriteLine(res);
        }
        sw.Flush();
    }

    string[] input = Array.Empty<string>();
    int iter = 0;
    readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false };

    string String()
    {
        while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0);
        return input[iter++];
    }
    T Input<T>() where T : IParsable<T> => T.Parse(String(), null);
    int Int() => Input<int>();
    void Out(object? x, string? separator = null)
    {
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable obj and not string)
        {
            var firstLine = true;
            foreach (var item in obj)
            {
                if (!firstLine) sw.Write(separator);
                firstLine = false;
                sw.Write(item);
            }
        }
        else sw.Write(x);
        sw.WriteLine();
    }
}
0