結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,972 KB
testcase_01 AC 30 ms
27,068 KB
testcase_02 AC 30 ms
27,004 KB
testcase_03 AC 29 ms
25,216 KB
testcase_04 AC 30 ms
23,096 KB
testcase_05 AC 37 ms
27,140 KB
testcase_06 AC 31 ms
24,768 KB
testcase_07 AC 68 ms
33,116 KB
testcase_08 AC 30 ms
25,144 KB
testcase_09 AC 72 ms
40,748 KB
testcase_10 AC 41 ms
29,224 KB
testcase_11 AC 35 ms
27,272 KB
testcase_12 AC 512 ms
117,660 KB
testcase_13 AC 480 ms
117,916 KB
testcase_14 AC 512 ms
115,492 KB
testcase_15 AC 555 ms
119,832 KB
testcase_16 AC 511 ms
113,712 KB
testcase_17 AC 542 ms
121,888 KB
testcase_18 AC 484 ms
115,624 KB
testcase_19 AC 557 ms
115,884 KB
testcase_20 AC 562 ms
117,668 KB
testcase_21 AC 497 ms
117,800 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