結果

問題 No.3068 Speedrun (Hard)
ユーザー tobisatis
提出日時 2025-03-22 13:01:31
言語 C#
(.NET 8.0.404)
結果
TLE  
実行時間 -
コード長 2,531 bytes
コンパイル時間 9,851 ms
コンパイル使用メモリ 173,468 KB
実行使用メモリ 436,152 KB
最終ジャッジ日時 2025-03-22 13:01:50
合計ジャッジ時間 15,520 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 TLE * 1
other AC * 2 TLE * 1 -- * 29
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (114 ミリ秒)。
  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;

const int m = 200000000;

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 f = (stackalloc short[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 = i * yz[0] + j * yz[1];
        f[k] = (short)j;
    }
    for (var s2 = 0; s2 <= xz[2]; s2++)
    {
        var v = yz[2] * s2;
        for (var s3 = 0; s3 <= xz[3]; s3++)
        {
            var s1 = f[t - v];
            if (s1 >= 0)
            {
                var ys0 = t - v - s1 * yz[1];
                if ((long)(n - s1 - s2 - s3) * yz[0] == ys0)
                {
                    var s0 = ys0 / yz[0];
                    Out(new[]{ s0, s1, s2, s3 }, " ");
                    return;
                }
            }
            v += yz[3];
        }
    }
}

#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