結果

問題 No.2770 Coupon Optimization
ユーザー tobisatistobisatis
提出日時 2024-05-31 22:09:16
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 283 ms / 3,000 ms
コード長 2,596 bytes
コンパイル時間 8,317 ms
コンパイル使用メモリ 165,784 KB
実行使用メモリ 239,544 KB
最終ジャッジ日時 2024-05-31 22:09:33
合計ジャッジ時間 14,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,336 KB
testcase_01 AC 59 ms
30,588 KB
testcase_02 AC 58 ms
30,576 KB
testcase_03 AC 252 ms
85,384 KB
testcase_04 AC 263 ms
88,212 KB
testcase_05 AC 95 ms
46,464 KB
testcase_06 AC 257 ms
78,024 KB
testcase_07 AC 271 ms
81,788 KB
testcase_08 AC 277 ms
78,720 KB
testcase_09 AC 114 ms
46,720 KB
testcase_10 AC 154 ms
55,156 KB
testcase_11 AC 134 ms
48,384 KB
testcase_12 AC 181 ms
67,716 KB
testcase_13 AC 160 ms
56,320 KB
testcase_14 AC 276 ms
78,340 KB
testcase_15 AC 283 ms
78,608 KB
testcase_16 AC 279 ms
78,332 KB
testcase_17 AC 282 ms
239,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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 az = n.Repeat(Int);
        var bz = m.Repeat(Int);

        var iz = new int[n];
        for (var i = 0; i < n; i++) iz[i] = az[i] / 100;
        Array.Sort(iz);
        var cz = new int[101];
        foreach (var b in bz) cz[100 - b]++;
        cz[0] = n - 1;
        cz[100] = Math.Max(0, n - m);
        var sz = new long[n + 1];
        for (var i = 1; i <= n; i++) sz[i] = sz[i - 1] + iz[i - 1];
        var zz = new (int, int)[101];
        {
            var j = n;
            for (var i = 0; i <= 100; i++)
            {
                var r = j;
                j -= cz[i];
                zz[i] = (j, r);
            }
        }
        var ans = new long[n];
        for (var i = 0; i < n; i++)
        {
            var ins = 0L;
            for (var j = 0; j <= 100; j++)
            {
                var jns = 0L;
                var (l, r) = zz[j];
                if (0 <= r && r <= n) jns += sz[r];
                if (0 <= l && l <= n) jns -= sz[l];
                ins += jns * j;
                zz[j] = (l + 1, Math.Min(n, r + 1));
            }
            ans[i] = ins;
        }
        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()!.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