結果

問題 No.3068 Speedrun (Hard)
ユーザー tobisatis
提出日時 2025-03-21 22:16:32
言語 C#
(.NET 8.0.404)
結果
MLE  
実行時間 -
コード長 2,747 bytes
コンパイル時間 13,416 ms
コンパイル使用メモリ 168,404 KB
実行使用メモリ 826,652 KB
最終ジャッジ日時 2025-03-21 22:16:53
合計ジャッジ時間 16,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample MLE * 2
other -- * 32
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (205 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

#nullable enable

using System.Numerics;

void Run()
{
    var xz = (stackalloc int[4]);
    for (var i = 0; i < 4; i++) xz[i] = Int();
    var n = Int();
    var yz = (stackalloc int[4]);
    for (var i = 0; i < 4; i++) yz[i] = Int();
    var t = Int();
    var m = 200000000;
    var mask = (1 << 14) - 1;
    var f = (stackalloc int[m + 1]);
    for (var i = 0; i <= m; i++) f[i] = -1;
    for (var i = 0; i <= xz[0]; i++) for (var j = 0; j <= xz[1]; j++)
    {
        var k = t - (i * yz[0] + j * yz[1]);
        if (k >= 0) f[k] = (i << 14) + j;
    }
    var random = new Random();
    var s2 = random.Next(xz[2]);
    var s3 = random.Next(xz[3]);
    for (var i = 0; i <= xz[2]; i++)
    {
        var v2 = yz[2] * s2;
        for (var j = 0; j <= xz[3]; j++)
        {
            var v = v2 + yz[3] * s3;
            var ss = f[v];
            if (ss >= 0)
            {
                var s0 = ss >> 14;
                var s1 = ss & mask;
                if (s0 + s1 + s2 + s3 == n)
                {
                    Out(new[]{ s0, s1, s2, s3 }, " ");
                    return;
                }
            }
            s3++;
            if (s3 > xz[3]) s3 = 0;
        }
        s2++;
        if (s2 > xz[2]) s2 = 0;
    }
}

#region
AtCoderIO _io_;
var _backend_ = new StandardIOBackend();
_io_ = new(){ Backend = _backend_ };
Run();
_backend_.Flush();

string String() => _io_.Next();
int Int() => int.Parse(String());
void Out(object? x, string? sep = null) => _io_.Out(x, sep);

class AtCoderIO
{
    public required StandardIOBackend Backend { get; init; }

    Memory<string> _input = Array.Empty<string>();
    int _iter = 0;
    public string Next()
    {
        while (_iter >= _input.Length) (_input, _iter) = (Backend.ReadLine().Split(' '), 0);
        return _input.Span[_iter++];
    }

    public void Out(object? x, string? separator = null)
    {
        if (x == null) return;
        separator ??= Environment.NewLine;
        if (x is System.Collections.IEnumerable a and not string)
        {
            var objects = a.Cast<object>();
            if (separator == Environment.NewLine && !objects.Any()) return;
            x = string.Join(separator, objects);
        }
        Backend.WriteLine(x);
    }
}

class StandardIOBackend
{
    readonly StreamReader _sr = new(Console.OpenStandardInput());
    readonly StreamWriter _sw = new(Console.OpenStandardOutput()) { AutoFlush = false };
    public string ReadLine() => _sr.ReadLine()!;
    public void WriteLine(object? value) => _sw.WriteLine(value);
    public void Flush() => _sw.Flush();
}
#endregion

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