結果

問題 No.2916 累進コスト最小化
ユーザー tobisatistobisatis
提出日時 2024-10-04 21:34:58
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 495 ms / 3,500 ms
コード長 2,527 bytes
コンパイル時間 8,015 ms
コンパイル使用メモリ 165,016 KB
実行使用メモリ 217,792 KB
最終ジャッジ日時 2024-10-05 01:06:15
合計ジャッジ時間 14,471 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
57,832 KB
testcase_01 AC 53 ms
30,592 KB
testcase_02 AC 54 ms
30,592 KB
testcase_03 AC 55 ms
30,720 KB
testcase_04 AC 52 ms
30,848 KB
testcase_05 AC 52 ms
30,848 KB
testcase_06 AC 51 ms
30,824 KB
testcase_07 AC 51 ms
30,704 KB
testcase_08 AC 52 ms
30,720 KB
testcase_09 AC 52 ms
30,848 KB
testcase_10 AC 55 ms
30,720 KB
testcase_11 AC 54 ms
30,848 KB
testcase_12 AC 55 ms
30,716 KB
testcase_13 AC 55 ms
30,848 KB
testcase_14 AC 53 ms
30,708 KB
testcase_15 AC 51 ms
30,848 KB
testcase_16 AC 53 ms
30,592 KB
testcase_17 AC 53 ms
30,720 KB
testcase_18 AC 52 ms
30,592 KB
testcase_19 AC 53 ms
30,848 KB
testcase_20 AC 53 ms
32,736 KB
testcase_21 AC 51 ms
30,848 KB
testcase_22 AC 52 ms
30,976 KB
testcase_23 AC 52 ms
30,948 KB
testcase_24 AC 180 ms
57,728 KB
testcase_25 AC 224 ms
57,856 KB
testcase_26 AC 495 ms
57,728 KB
testcase_27 AC 438 ms
57,832 KB
testcase_28 AC 349 ms
57,856 KB
testcase_29 AC 371 ms
58,112 KB
testcase_30 AC 267 ms
57,852 KB
testcase_31 AC 300 ms
57,984 KB
testcase_32 AC 299 ms
57,840 KB
testcase_33 AC 301 ms
217,792 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (84 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 m = Int();
        var cMax = Int();
        var fz = new (int, int)[n, n];
        for (var i = 0; i < m; i++)
        {
            var u = Int() - 1;
            var v = Int() - 1;
            var r = Int();
            var w = Int();
            fz[u, v] = fz[v, u] = (r, w);
        }
        var ans = new Stack<int>();
        for (var c = cMax; c > 0; c--)
        {
            var lz = n.Repeat(() => -1);
            lz[0] = c;
            var q = new PriorityQueue<(int v, int p), int>();
            q.Enqueue((0, c), -c);
            while (q.Count > 0)
            {
                var (u, p) = q.Dequeue();
                for (var v = 0; v < n; v++)
                {
                    var (r, w) = fz[u, v];
                    if (r == 0) continue;
                    var np = p - (p / r + w);
                    if (np < 0 || lz[v] >= np) continue;
                    lz[v] = np;
                    q.Enqueue((v, np), -np);
                }
            }
            var lns = lz[n - 1];
            ans.Push(lns);
        }
        Out(ans);
        return null;
    }

    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()!.Trim().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