結果

問題 No.527 ナップサック容量問題
ユーザー nebukuro09nebukuro09
提出日時 2017-06-09 22:44:27
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 1,191 bytes
コンパイル時間 946 ms
コンパイル使用メモリ 130,420 KB
実行使用メモリ 42,432 KB
最終ジャッジ日時 2024-06-12 19:51:32
合計ジャッジ時間 2,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 24 ms
19,092 KB
testcase_06 AC 43 ms
35,528 KB
testcase_07 AC 35 ms
29,636 KB
testcase_08 AC 19 ms
16,412 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 44 ms
36,000 KB
testcase_11 AC 31 ms
26,088 KB
testcase_12 AC 23 ms
19,752 KB
testcase_13 AC 45 ms
36,800 KB
testcase_14 AC 18 ms
14,448 KB
testcase_15 AC 26 ms
21,920 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 23 ms
18,952 KB
testcase_18 AC 24 ms
21,704 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 AC 19 ms
15,652 KB
testcase_21 AC 50 ms
42,432 KB
testcase_22 AC 34 ms
28,708 KB
testcase_23 AC 48 ms
40,968 KB
testcase_24 AC 11 ms
9,664 KB
testcase_25 AC 33 ms
27,740 KB
testcase_26 AC 28 ms
24,488 KB
testcase_27 AC 31 ms
25,072 KB
testcase_28 AC 26 ms
22,480 KB
testcase_29 AC 49 ms
41,592 KB
testcase_30 AC 6 ms
6,944 KB
testcase_31 AC 22 ms
18,816 KB
testcase_32 AC 25 ms
22,568 KB
testcase_33 AC 24 ms
20,500 KB
testcase_34 AC 29 ms
23,264 KB
testcase_35 AC 29 ms
23,468 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 23 ms
18,772 KB
testcase_38 AC 26 ms
22,364 KB
testcase_39 AC 25 ms
21,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

alias Tuple!(int, "v", int, "w") Knap;

void main() {
    auto N = readln.chomp.to!int;
    auto K = new Knap[](N);
    foreach (i; 0..N) {
        auto s = readln.split.map!(to!int);
        K[i] = Knap(s[0], s[1]);
    }
    auto V = readln.chomp.to!int;


    K.sort!"a.w < b.w"();

    auto dp = new int[][](N, 10^^5+1);
    dp[0][K[0].w] = K[0].v;

    foreach (i; 1..N) {
        foreach (k; 0..10^^5+1) {
            dp[i][k] = max(dp[i][k], dp[i-1][k]);
            if (k + K[i].w < 10^^5+1)
                dp[i][k+K[i].w] = max(dp[i][k+K[i].w], dp[i-1][k] + K[i].v);
        }
        dp[i][K[i].w] = max(dp[i][K[i].w], K[i].v);
    }

    foreach (j; 0..10^^5) dp[N-1][j+1] = max(dp[N-1][j], dp[N-1][j+1]);

    int minv = 1 << 29;
    int maxv = 0;
    foreach (j; 0..10^^5+1) {
        if (dp[N-1][j] == V) minv = min(minv, j), maxv = max(maxv, j);
    }

    if (K.map!(k => k.v).sum == V) maxv = -1;
    writeln(max(minv, 1));
    writeln(maxv == -1 ? "inf" : maxv.to!string);
}
0