結果

問題 No.2364 Knapsack Problem
ユーザー kakel-sankakel-san
提出日時 2023-08-17 10:50:37
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 484 ms / 3,000 ms
コード長 1,804 bytes
コンパイル時間 1,218 ms
コンパイル使用メモリ 108,288 KB
実行使用メモリ 109,824 KB
最終ジャッジ日時 2024-05-04 17:38:07
合計ジャッジ時間 8,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
18,816 KB
testcase_01 AC 24 ms
19,200 KB
testcase_02 AC 25 ms
19,200 KB
testcase_03 AC 24 ms
19,072 KB
testcase_04 AC 26 ms
19,456 KB
testcase_05 AC 31 ms
21,120 KB
testcase_06 AC 26 ms
19,584 KB
testcase_07 AC 57 ms
26,880 KB
testcase_08 AC 25 ms
19,200 KB
testcase_09 AC 62 ms
30,336 KB
testcase_10 AC 35 ms
21,120 KB
testcase_11 AC 29 ms
20,224 KB
testcase_12 AC 451 ms
109,568 KB
testcase_13 AC 414 ms
109,824 KB
testcase_14 AC 438 ms
109,824 KB
testcase_15 AC 481 ms
109,696 KB
testcase_16 AC 434 ms
109,824 KB
testcase_17 AC 463 ms
109,696 KB
testcase_18 AC 420 ms
109,696 KB
testcase_19 AC 484 ms
109,696 KB
testcase_20 AC 483 ms
109,696 KB
testcase_21 AC 425 ms
109,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

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 string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var p = NList;
        var (n, m, w) = (p[0], p[1], p[2]);
        var a = NList;
        var b = NList;
        var c = NList;
        var d = NList;
        var bitmax = 1 << n + m;
        var dp = new long[bitmax][];
        for (var i = 0; i < dp.Length; ++i) dp[i] = Enumerable.Repeat(long.MinValue / 2, w + 1).ToArray();
        dp[0][0] = 0;
        for (var i = 0; i < dp.Length; ++i)
        {
            for (var j = 0; j < n + m; ++j)
            {
                var next = i | (1 << j);
                if (next == i) continue;
                for (var k = 0; k <= w; ++k)
                {
                    if (j < n)
                    {
                        if (k + a[j] > w) continue;
                        dp[next][k + a[j]] = Math.Max(dp[next][k + a[j]], dp[i][k] + b[j]);
                    }
                    else
                    {
                        if (k - c[j - n] < 0) continue;
                        dp[next][k - c[j - n]] = Math.Max(dp[next][k - c[j - n]], dp[i][k] - d[j - n]);
                    }
                }
            }
        }
        var ans = 0L;
        foreach (var dl in dp) foreach (var di in dl) ans = Math.Max(ans, di);
        WriteLine(ans);
    }
}
0