結果

問題 No.2658 L-R Nim
ユーザー tobisatistobisatis
提出日時 2024-03-01 23:48:57
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 3,399 bytes
コンパイル時間 7,928 ms
コンパイル使用メモリ 167,396 KB
実行使用メモリ 212,188 KB
最終ジャッジ日時 2024-09-29 15:26:58
合計ジャッジ時間 215,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
38,576 KB
testcase_01 AC 58 ms
38,300 KB
testcase_02 AC 6,797 ms
39,340 KB
testcase_03 AC 58 ms
38,060 KB
testcase_04 AC 57 ms
38,200 KB
testcase_05 AC 75 ms
44,052 KB
testcase_06 AC 60 ms
39,188 KB
testcase_07 AC 67 ms
44,440 KB
testcase_08 AC 70 ms
44,440 KB
testcase_09 AC 6,797 ms
44,824 KB
testcase_10 AC 63 ms
39,064 KB
testcase_11 WA -
testcase_12 AC 63 ms
39,308 KB
testcase_13 AC 60 ms
39,064 KB
testcase_14 AC 60 ms
39,064 KB
testcase_15 AC 96 ms
44,052 KB
testcase_16 AC 60 ms
39,196 KB
testcase_17 AC 6,797 ms
44,440 KB
testcase_18 AC 6,800 ms
44,560 KB
testcase_19 AC 63 ms
38,940 KB
testcase_20 AC 67 ms
44,436 KB
testcase_21 AC 60 ms
38,944 KB
testcase_22 AC 59 ms
39,200 KB
testcase_23 AC 77 ms
44,308 KB
testcase_24 AC 478 ms
44,060 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 74 ms
41,712 KB
testcase_34 AC 6,800 ms
49,972 KB
testcase_35 AC 6,797 ms
41,768 KB
testcase_36 AC 6,799 ms
50,100 KB
testcase_37 AC 66 ms
42,448 KB
testcase_38 AC 6,795 ms
49,856 KB
testcase_39 AC 6,799 ms
49,728 KB
testcase_40 AC 6,797 ms
49,724 KB
testcase_41 AC 6,797 ms
49,592 KB
testcase_42 AC 6,797 ms
49,976 KB
testcase_43 AC 6,797 ms
50,256 KB
testcase_44 AC 6,797 ms
49,736 KB
testcase_45 AC 6,797 ms
50,236 KB
testcase_46 AC 6,797 ms
50,104 KB
testcase_47 AC 6,797 ms
49,604 KB
testcase_48 AC 223 ms
49,596 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 6,798 ms
49,972 KB
testcase_52 AC 6,797 ms
212,188 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (91 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 TimeLimit
{
    long Limit { get; set; }
    System.Diagnostics.Stopwatch Stopwatch { get; set; }

    public TimeLimit(long milliseconds)
    {
        Limit = milliseconds;
        Stopwatch = new System.Diagnostics.Stopwatch();
        Stopwatch.Start();
    }
    
    public static implicit operator bool(TimeLimit tl) => tl.Stopwatch.ElapsedMilliseconds < tl.Limit;
}

class AtCoder
{
    object? Solve()
    {
        var tl = new TimeLimit(6500);
        var n = Int();
        var k = Int();
        var az = n.Repeat(Int);
        var (lo, ro) = (0, n - 1);
        var df = false;
        var m = 1000000;
        var srz = (m * 2 + 1).Repeat(() => -2);
        srz[0] = -1;
        var txor = 0;
        for (var i = 0; i < n; i++)
        {
            var a = az[i];
            txor ^= a;
            if (srz[txor] >= -1)
            {
                df = true;
                var (l, r) = (srz[txor] + 1, i);
                lo = Math.Max(lo, l);
                ro = Math.Min(ro, r);
            }
            srz[txor] = i;
        }
        if (!df)
        {
            return true;
        }
        if (lo > ro)
        {
            return false;
        }
        var d = new int[m * 2 + 1];
        d[0] = 1;
        var dup = 0;
        var random = new Random(1);
        while (tl)
        {
            var ri = random.Next(lo, ro + 1);
            var ao = az[ri];
            az[ri] = random.Next(Math.Max(1, ao - k), ao + k + 1);
            var sxor = 0;
            for (var i = 0; i < n; i++)
            {
                sxor ^= az[i];
                d[sxor]++;
                if (d[sxor] == 2) dup++;
            }
            if (dup == 0)
            {
                return true;
            }
            for (var i = n - 1; i >= 0; i--)
            {
                if (d[sxor] == 2) dup--;
                d[sxor]--;
                sxor ^= az[i];
            }
            az[ri] = ao;
        }
        return false;
    }

    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 };

    #pragma warning disable IDE0051
    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();
    }
    #pragma warning restore IDE0051
}
0