結果

問題 No.1430 Coup de Coupon
ユーザー kakel-sankakel-san
提出日時 2024-07-10 22:24:44
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,681 bytes
コンパイル時間 8,466 ms
コンパイル使用メモリ 167,332 KB
実行使用メモリ 187,812 KB
最終ジャッジ日時 2024-07-10 22:25:08
合計ジャッジ時間 13,521 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
30,592 KB
testcase_01 AC 54 ms
30,308 KB
testcase_02 AC 53 ms
30,572 KB
testcase_03 AC 56 ms
30,588 KB
testcase_04 AC 71 ms
32,896 KB
testcase_05 AC 58 ms
31,616 KB
testcase_06 AC 62 ms
33,024 KB
testcase_07 AC 65 ms
33,152 KB
testcase_08 AC 65 ms
32,000 KB
testcase_09 AC 107 ms
51,200 KB
testcase_10 AC 137 ms
63,744 KB
testcase_11 AC 156 ms
73,324 KB
testcase_12 AC 168 ms
79,744 KB
testcase_13 AC 170 ms
82,176 KB
testcase_14 AC 195 ms
79,868 KB
testcase_15 AC 154 ms
74,112 KB
testcase_16 AC 142 ms
64,876 KB
testcase_17 AC 103 ms
51,160 KB
testcase_18 AC 173 ms
82,364 KB
testcase_19 AC 177 ms
82,020 KB
testcase_20 AC 167 ms
82,048 KB
testcase_21 AC 68 ms
31,872 KB
testcase_22 AC 54 ms
30,720 KB
testcase_23 AC 57 ms
31,872 KB
testcase_24 AC 54 ms
30,440 KB
testcase_25 AC 55 ms
30,464 KB
testcase_26 AC 59 ms
187,812 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 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();
    static int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var p = LList(n);
        var map = NArr(m);
        var a = new List<int>();
        var b = new List<int>();
        foreach (var coup in map)
        {
            if (coup[0] == 1) a.Add(coup[1]);
            else b.Add(coup[1]);
        }
        Array.Sort(p, (l, r) => r.CompareTo(l));
        a.Sort((l, r) => r.CompareTo(l));
        b.Sort((l, r) => r.CompareTo(l));
        var dp = new long[a.Count + 1][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = new long[b.Count + 1];
        for (var i = 0; i < dp.Length; ++i) for (var j = 0; j < dp[i].Length; ++j)
        {
            if (i + 1 < dp.Length && i + j < n) dp[i + 1][j] = Math.Max(dp[i + 1][j], dp[i][j] + Math.Min(p[i + j], a[i]));
            if (j + 1 < dp[i].Length && i + j < n) dp[i][j + 1] = Math.Max(dp[i][j + 1], dp[i][j] + p[i + j] * b[j] / 100);
        }
        var ans = 0L;
        foreach (var pi in p) ans += pi;
        var max = 0L;
        foreach (var di in dp) foreach (var dij in di) max = Math.Max(max, dij);
        WriteLine(ans - max);
    }
}
0