結果

問題 No.2549 Paint Eggs
ユーザー kakel-sankakel-san
提出日時 2024-01-29 23:22:12
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,076 bytes
コンパイル時間 8,298 ms
コンパイル使用メモリ 166,984 KB
実行使用メモリ 212,292 KB
最終ジャッジ日時 2024-09-28 10:07:57
合計ジャッジ時間 15,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
30,464 KB
testcase_01 WA -
testcase_02 AC 54 ms
30,420 KB
testcase_03 AC 51 ms
30,200 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 52 ms
30,208 KB
testcase_07 AC 54 ms
30,448 KB
testcase_08 AC 52 ms
30,336 KB
testcase_09 WA -
testcase_10 AC 124 ms
64,512 KB
testcase_11 AC 106 ms
59,852 KB
testcase_12 AC 94 ms
52,992 KB
testcase_13 AC 118 ms
63,232 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 103 ms
58,304 KB
testcase_17 AC 90 ms
49,532 KB
testcase_18 WA -
testcase_19 AC 111 ms
52,352 KB
testcase_20 AC 115 ms
57,572 KB
testcase_21 AC 113 ms
57,452 KB
testcase_22 WA -
testcase_23 AC 111 ms
57,704 KB
testcase_24 AC 114 ms
57,728 KB
testcase_25 AC 111 ms
57,432 KB
testcase_26 AC 112 ms
57,580 KB
testcase_27 AC 113 ms
57,464 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 113 ms
57,680 KB
testcase_31 AC 112 ms
57,692 KB
testcase_32 AC 113 ms
57,436 KB
testcase_33 AC 114 ms
57,564 KB
testcase_34 WA -
testcase_35 AC 115 ms
57,692 KB
testcase_36 AC 120 ms
57,600 KB
testcase_37 AC 116 ms
57,472 KB
testcase_38 AC 115 ms
57,656 KB
testcase_39 AC 117 ms
57,472 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 113 ms
57,600 KB
testcase_44 AC 115 ms
212,292 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 #

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 mins = (int[]) counts.Clone();
        for (var i = k; i < n; ++i)
        {
            ++counts[c[i]];
            --counts[c[i - k]];
            mins[c[i - k]] = Math.Min(mins[c[i - k]], counts[c[i - k]]);
        }
        var ans = long.MaxValue;
        for (var i = 0; i < m; ++i) ans = Math.Min(ans, (long)a[i] * (k - counts[i]));
        WriteLine(ans);
    }
}
0