結果

問題 No.2549 Paint Eggs
ユーザー bluemeganebluemegane
提出日時 2023-11-27 14:42:41
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,432 bytes
コンパイル時間 10,330 ms
コンパイル使用メモリ 167,200 KB
実行使用メモリ 228,544 KB
最終ジャッジ日時 2024-09-26 12:22:54
合計ジャッジ時間 18,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 61 ms
29,568 KB
testcase_02 WA -
testcase_03 AC 59 ms
29,568 KB
testcase_04 AC 60 ms
29,312 KB
testcase_05 AC 58 ms
29,824 KB
testcase_06 WA -
testcase_07 AC 58 ms
29,312 KB
testcase_08 AC 58 ms
29,568 KB
testcase_09 AC 59 ms
29,952 KB
testcase_10 AC 151 ms
66,432 KB
testcase_11 AC 144 ms
62,592 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 123 ms
56,320 KB
testcase_15 AC 78 ms
33,024 KB
testcase_16 AC 148 ms
63,104 KB
testcase_17 AC 123 ms
52,096 KB
testcase_18 AC 118 ms
49,280 KB
testcase_19 AC 131 ms
56,192 KB
testcase_20 WA -
testcase_21 AC 172 ms
72,448 KB
testcase_22 AC 174 ms
72,576 KB
testcase_23 AC 174 ms
72,960 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 168 ms
72,576 KB
testcase_27 AC 171 ms
72,576 KB
testcase_28 AC 173 ms
72,448 KB
testcase_29 AC 179 ms
72,320 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 171 ms
72,704 KB
testcase_33 AC 170 ms
72,448 KB
testcase_34 AC 172 ms
72,576 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 180 ms
72,576 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 176 ms
72,704 KB
testcase_41 AC 172 ms
72,704 KB
testcase_42 AC 176 ms
72,576 KB
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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.Collections.Generic;
using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        var k = int.Parse(line[2]);
        line = Console.ReadLine().Trim().Split(' ');
        var c = Array.ConvertAll(line, x=> int.Parse(x) -1);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        getAns(n, m, k, c,a);
    }
    static void getAns(int n, int m, int k, int[] c, int[] a)
    {
        var d = new Dictionary<int, int>();
        for (int i = 0; i < k; i++)
        {
            if (d.ContainsKey(c[i])) d[c[i]]++;
            else d[c[i]] = 1;
        }
        var ans = long.MaxValue;
        foreach(var x in d)
        {
            var tempcost = (k - x.Value) *(long) a[x.Key];
            if (tempcost == 0) { Console.WriteLine(0); return; }
            ans = Min (ans,tempcost);
        }
        for (int i = 0; i < n -k; i++)
        {
            d[c[i]]--;
            var nkey = c[i + k];
            if (d.ContainsKey(nkey)) d[nkey]++;
            else d[nkey] = 1;
            var tempcost = (k - d[nkey]) * (long)a[nkey];
            if (tempcost == 0) { Console.WriteLine(0); return; }
            ans = Min(ans, tempcost);
        }
        Console.WriteLine(ans);
    }
}
0