結果

問題 No.527 ナップサック容量問題
ユーザー nebukuro09nebukuro09
提出日時 2017-06-09 22:43:52
言語 D
(dmd 2.109.1)
結果
WA  
実行時間 -
コード長 1,183 bytes
コンパイル時間 1,142 ms
コンパイル使用メモリ 130,428 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-06-12 19:51:19
合計ジャッジ時間 2,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 22 ms
18,300 KB
testcase_06 AC 46 ms
35,460 KB
testcase_07 AC 36 ms
30,712 KB
testcase_08 AC 19 ms
16,948 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 46 ms
35,960 KB
testcase_11 AC 31 ms
27,100 KB
testcase_12 AC 24 ms
19,172 KB
testcase_13 AC 45 ms
36,808 KB
testcase_14 AC 18 ms
14,448 KB
testcase_15 AC 28 ms
22,504 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 21 ms
19,776 KB
testcase_18 AC 25 ms
20,832 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 18 ms
15,416 KB
testcase_21 AC 53 ms
41,492 KB
testcase_22 AC 37 ms
29,960 KB
testcase_23 AC 48 ms
41,788 KB
testcase_24 AC 11 ms
11,248 KB
testcase_25 WA -
testcase_26 AC 29 ms
24,424 KB
testcase_27 AC 30 ms
25,024 KB
testcase_28 WA -
testcase_29 AC 52 ms
41,524 KB
testcase_30 AC 6 ms
6,940 KB
testcase_31 AC 23 ms
20,460 KB
testcase_32 AC 27 ms
22,624 KB
testcase_33 AC 23 ms
19,492 KB
testcase_34 AC 28 ms
23,408 KB
testcase_35 AC 29 ms
23,340 KB
testcase_36 WA -
testcase_37 AC 22 ms
18,300 KB
testcase_38 AC 28 ms
22,904 KB
testcase_39 AC 26 ms
20,820 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 = 1;
    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(minv);
    writeln(maxv == -1 ? "inf" : maxv.to!string);
}
0