結果

問題 No.527 ナップサック容量問題
ユーザー te-shte-sh
提出日時 2018-01-26 15:46:33
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 1,060 bytes
コンパイル時間 699 ms
コンパイル使用メモリ 98,940 KB
実行使用メモリ 22,072 KB
最終ジャッジ日時 2024-06-12 23:39:04
合計ジャッジ時間 2,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 28 ms
18,516 KB
testcase_07 AC 18 ms
11,720 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 28 ms
17,192 KB
testcase_11 AC 13 ms
9,668 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 30 ms
20,388 KB
testcase_14 AC 6 ms
6,944 KB
testcase_15 AC 12 ms
9,168 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 7 ms
6,944 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 5 ms
6,944 KB
testcase_21 AC 32 ms
21,564 KB
testcase_22 AC 18 ms
12,296 KB
testcase_23 AC 28 ms
18,104 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 15 ms
10,388 KB
testcase_26 AC 13 ms
9,016 KB
testcase_27 AC 14 ms
9,976 KB
testcase_28 AC 13 ms
8,020 KB
testcase_29 AC 33 ms
22,072 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 14 ms
9,240 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 8 ms
6,940 KB
testcase_38 AC 11 ms
8,784 KB
testcase_39 AC 10 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void readV(T...)(ref T t){auto r=readln.splitter;foreach(ref v;t){v=r.front.to!(typeof(v));r.popFront;}}
T[] readArray(T)(size_t n){auto a=new T[](n),r=readln.splitter;foreach(ref v;a){v=r.front.to!T;r.popFront;}return a;}
T[] readArrayM(T)(size_t n){auto a=new T[](n);foreach(ref v;a)v=readln.chomp.to!T;return a;}

void main()
{
  int n; readV(n);
  auto v = new int[](n), w = new int[](n);
  foreach (i; 0..n) readV(v[i], w[i]);
  int vs; readV(vs);

  auto ws = w.sum;
  auto dp = new int[][](n+1, ws+1);
  foreach (i; 0..n+1) dp[i][] = -1;
  dp[0][0] = 0;

  foreach (i; 0..n)
    foreach (j; 0..ws+1) {
      dp[i+1][j] = dp[i][j];
      if (j >= w[i] && dp[i][j-w[i]] >= 0)
        dp[i+1][j] = max(dp[i+1][j], dp[i][j-w[i]]+v[i]);
    }

  auto m1 = false, m2 = false;
  foreach (i; 0..ws+1) {
    if (dp[n][i] == vs && !m1) {
      m1 = true;
      writeln(max(i, 1));
    }
    if (dp[n][i] > vs && !m2) {
      m2 = true;
      writeln(i-1);
    }
  }

  if (!m2) writeln("inf");
}
0