結果

問題 No.2549 Paint Eggs
ユーザー heno239heno239
提出日時 2024-02-06 17:20:52
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 1,819 bytes
コンパイル時間 9,584 ms
コンパイル使用メモリ 167,888 KB
実行使用メモリ 225,452 KB
最終ジャッジ日時 2024-09-28 12:08:02
合計ジャッジ時間 17,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
30,464 KB
testcase_01 AC 60 ms
30,336 KB
testcase_02 AC 59 ms
30,464 KB
testcase_03 AC 59 ms
30,464 KB
testcase_04 AC 59 ms
30,592 KB
testcase_05 AC 58 ms
30,464 KB
testcase_06 AC 59 ms
30,592 KB
testcase_07 AC 58 ms
30,336 KB
testcase_08 AC 57 ms
30,336 KB
testcase_09 AC 59 ms
30,464 KB
testcase_10 AC 151 ms
65,676 KB
testcase_11 AC 127 ms
60,280 KB
testcase_12 AC 125 ms
59,776 KB
testcase_13 AC 149 ms
65,940 KB
testcase_14 AC 113 ms
55,168 KB
testcase_15 AC 66 ms
33,536 KB
testcase_16 AC 133 ms
58,752 KB
testcase_17 AC 112 ms
54,656 KB
testcase_18 AC 103 ms
51,328 KB
testcase_19 AC 121 ms
58,880 KB
testcase_20 AC 178 ms
69,120 KB
testcase_21 AC 177 ms
69,248 KB
testcase_22 AC 177 ms
69,108 KB
testcase_23 AC 170 ms
69,120 KB
testcase_24 AC 173 ms
69,120 KB
testcase_25 AC 170 ms
69,376 KB
testcase_26 AC 170 ms
69,120 KB
testcase_27 AC 171 ms
69,120 KB
testcase_28 AC 171 ms
69,364 KB
testcase_29 AC 168 ms
69,376 KB
testcase_30 AC 168 ms
69,120 KB
testcase_31 AC 178 ms
69,120 KB
testcase_32 AC 170 ms
69,248 KB
testcase_33 AC 172 ms
69,108 KB
testcase_34 AC 170 ms
69,120 KB
testcase_35 AC 175 ms
69,120 KB
testcase_36 AC 178 ms
68,980 KB
testcase_37 AC 171 ms
69,248 KB
testcase_38 AC 177 ms
69,120 KB
testcase_39 AC 169 ms
69,120 KB
testcase_40 AC 175 ms
69,356 KB
testcase_41 AC 171 ms
69,120 KB
testcase_42 AC 171 ms
69,120 KB
testcase_43 AC 178 ms
69,120 KB
testcase_44 AC 175 ms
225,452 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.Collections;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

internal class Program
{
    private const long mod = 998244353;
    private const long mod17 = 1000000007;
    private const long INF = mod17 * mod17;
    
    public static void Main(string[] args)
    {
        var line = getar();
        int n = line[0], m = line[1], k = line[2];
        var c = getar();
        for (int i = 0; i < n; i++) c[i]--;
        var a = getar();
        long ans = INF;
        for (int i = 0; i < m; i++)
        {
            long val = (long)a[i] * k;
            ans = Math.Min(ans, val);
        }

        List<List<int>> ids = new List<List<int>>(m);
        for(int i=0;i<m;i++)ids.Add(new List<int>());
        for (int i = 0; i < n; i++)
        {
            ids[c[i]].Add(i);
        }

        for (int i = 0; i < m; i++)
        {
            if (ids[i].Count() == 0) continue;
            int r = 0;
            for (int l = 0; l < ids[i].Count(); l++)
            {
                while (r + 1 < ids[i].Count() && ids[i][r + 1] - ids[i][l] < k) r++;
                int num = r - l + 1;
                long val = (long)(k - num) * a[i];
                ans = Math.Min(ans, val);
            }
        }
        Console.WriteLine(ans);
    }
    public class lower_bound<T> : IComparer<T> where T : IComparable<T>
    {
        public int Compare(T x, T y)
        {
            return 0 <= x.CompareTo(y) ? 1 : -1;
        }
    }
    public static List<T> mkar<T>(int n, T val)
    {
        List<T> res = new List<T>(n);
        for(int i=0;i<n;i++)res.Add(val);
        return res;
    }

    public static int[] getar()
    {
        var res = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        return res;
    }
}
0