結果

問題 No.2549 Paint Eggs
ユーザー kakel-sankakel-san
提出日時 2024-01-29 23:26:01
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 8,226 ms
コンパイル使用メモリ 167,244 KB
実行使用メモリ 212,144 KB
最終ジャッジ日時 2024-09-28 10:08:12
合計ジャッジ時間 13,736 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
30,336 KB
testcase_01 AC 50 ms
30,336 KB
testcase_02 AC 52 ms
30,444 KB
testcase_03 AC 51 ms
30,420 KB
testcase_04 AC 51 ms
30,448 KB
testcase_05 AC 52 ms
30,420 KB
testcase_06 AC 51 ms
30,080 KB
testcase_07 AC 62 ms
30,592 KB
testcase_08 AC 53 ms
30,208 KB
testcase_09 AC 52 ms
30,336 KB
testcase_10 AC 114 ms
64,768 KB
testcase_11 AC 102 ms
59,976 KB
testcase_12 AC 91 ms
53,120 KB
testcase_13 AC 111 ms
63,232 KB
testcase_14 AC 92 ms
53,632 KB
testcase_15 AC 56 ms
32,384 KB
testcase_16 AC 98 ms
58,092 KB
testcase_17 AC 83 ms
49,408 KB
testcase_18 AC 78 ms
46,848 KB
testcase_19 AC 88 ms
52,352 KB
testcase_20 AC 109 ms
57,440 KB
testcase_21 AC 112 ms
57,684 KB
testcase_22 AC 111 ms
57,472 KB
testcase_23 AC 117 ms
57,464 KB
testcase_24 AC 116 ms
57,728 KB
testcase_25 AC 112 ms
57,568 KB
testcase_26 AC 113 ms
57,704 KB
testcase_27 AC 117 ms
57,728 KB
testcase_28 AC 114 ms
57,600 KB
testcase_29 AC 112 ms
57,600 KB
testcase_30 AC 115 ms
57,472 KB
testcase_31 AC 112 ms
57,824 KB
testcase_32 AC 110 ms
57,824 KB
testcase_33 AC 111 ms
57,440 KB
testcase_34 AC 113 ms
57,856 KB
testcase_35 AC 114 ms
57,464 KB
testcase_36 AC 110 ms
57,676 KB
testcase_37 AC 114 ms
57,676 KB
testcase_38 AC 112 ms
57,472 KB
testcase_39 AC 110 ms
57,600 KB
testcase_40 AC 111 ms
57,444 KB
testcase_41 AC 115 ms
57,572 KB
testcase_42 AC 117 ms
57,728 KB
testcase_43 AC 112 ms
57,344 KB
testcase_44 AC 113 ms
212,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (103 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 #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m, k) = (c[0], c[1], c[2]);
        c = NList;
        for (var i = 0; i < c.Length; ++i) --c[i];
        var a = NList;
        var counts = new int[m];
        for (var i = 0; i < k; ++i) ++counts[c[i]];
        var maxs = (int[]) counts.Clone();
        for (var i = k; i < n; ++i)
        {
            ++counts[c[i]];
            --counts[c[i - k]];
            maxs[c[i]] = Math.Max(maxs[c[i]], counts[c[i]]);
        }
        var ans = long.MaxValue;
        for (var i = 0; i < m; ++i) ans = Math.Min(ans, (long)a[i] * (k - maxs[i]));
        WriteLine(ans);
    }
}
0