結果

問題 No.2730 Two Types Luggage
ユーザー kakel-sankakel-san
提出日時 2024-04-29 21:42:58
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 622 ms / 2,000 ms
コード長 1,201 bytes
コンパイル時間 13,213 ms
コンパイル使用メモリ 169,400 KB
実行使用メモリ 330,828 KB
最終ジャッジ日時 2024-11-19 05:56:20
合計ジャッジ時間 31,149 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
29,696 KB
testcase_01 AC 56 ms
29,824 KB
testcase_02 AC 57 ms
29,952 KB
testcase_03 AC 55 ms
30,080 KB
testcase_04 AC 64 ms
30,588 KB
testcase_05 AC 59 ms
30,336 KB
testcase_06 AC 56 ms
29,824 KB
testcase_07 AC 56 ms
29,936 KB
testcase_08 AC 55 ms
29,948 KB
testcase_09 AC 59 ms
30,592 KB
testcase_10 AC 74 ms
36,096 KB
testcase_11 AC 391 ms
130,256 KB
testcase_12 AC 622 ms
172,724 KB
testcase_13 AC 336 ms
114,484 KB
testcase_14 AC 398 ms
130,320 KB
testcase_15 AC 240 ms
56,764 KB
testcase_16 AC 179 ms
70,704 KB
testcase_17 AC 508 ms
168,380 KB
testcase_18 AC 466 ms
160,308 KB
testcase_19 AC 92 ms
41,728 KB
testcase_20 AC 200 ms
78,240 KB
testcase_21 AC 361 ms
125,872 KB
testcase_22 AC 498 ms
171,664 KB
testcase_23 AC 102 ms
42,880 KB
testcase_24 AC 227 ms
84,704 KB
testcase_25 AC 383 ms
132,020 KB
testcase_26 AC 144 ms
58,004 KB
testcase_27 AC 359 ms
125,876 KB
testcase_28 AC 215 ms
81,656 KB
testcase_29 AC 447 ms
161,328 KB
testcase_30 AC 199 ms
43,136 KB
testcase_31 AC 296 ms
115,112 KB
testcase_32 AC 273 ms
106,844 KB
testcase_33 AC 604 ms
174,680 KB
testcase_34 AC 606 ms
174,132 KB
testcase_35 AC 606 ms
173,872 KB
testcase_36 AC 603 ms
173,744 KB
testcase_37 AC 605 ms
330,828 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /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;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m, w) = (c[0], (int)c[1], c[2]);
        var a = NList;
        var b = NList;
        c = NList;
        Array.Sort(a, (l, r) => r.CompareTo(l));
        var cum = new long[n + 1];
        for (var i = 0; i < n; ++i) cum[i + 1] = cum[i] + a[i];
        var bitmax = 1 << m;
        var ans = 0L;
        for (var p = 0; p < bitmax; ++p)
        {
            var tmp = p;
            var weight = 0L;
            var value = 0L;
            for (var i = 0; i < m; ++i)
            {
                if (tmp % 2 == 1)
                {
                    weight += b[i];
                    value += c[i];
                }
                tmp >>= 1;
            }
            if (weight <= w) ans = Math.Max(ans, value + cum[Math.Min(n, w - weight)]);
        }
        WriteLine(ans);
    }
}
0