結果

問題 No.527 ナップサック容量問題
ユーザー ikdikd
提出日時 2017-11-26 23:10:29
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 991 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 101,132 KB
実行使用メモリ 42,708 KB
最終ジャッジ日時 2024-06-12 22:42:29
合計ジャッジ時間 2,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 18 ms
18,488 KB
testcase_06 AC 33 ms
35,996 KB
testcase_07 AC 28 ms
29,688 KB
testcase_08 AC 15 ms
16,744 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 33 ms
36,308 KB
testcase_11 AC 24 ms
26,776 KB
testcase_12 AC 17 ms
19,744 KB
testcase_13 AC 35 ms
37,032 KB
testcase_14 AC 13 ms
14,812 KB
testcase_15 AC 20 ms
22,196 KB
testcase_16 AC 3 ms
6,940 KB
testcase_17 AC 17 ms
20,220 KB
testcase_18 AC 18 ms
21,084 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 13 ms
15,988 KB
testcase_21 AC 41 ms
41,964 KB
testcase_22 AC 27 ms
28,972 KB
testcase_23 AC 37 ms
40,664 KB
testcase_24 AC 9 ms
10,604 KB
testcase_25 AC 26 ms
28,436 KB
testcase_26 AC 23 ms
24,900 KB
testcase_27 AC 24 ms
25,956 KB
testcase_28 AC 20 ms
22,268 KB
testcase_29 AC 39 ms
42,708 KB
testcase_30 AC 5 ms
6,940 KB
testcase_31 AC 17 ms
20,736 KB
testcase_32 AC 19 ms
22,916 KB
testcase_33 AC 16 ms
21,524 KB
testcase_34 AC 20 ms
23,672 KB
testcase_35 AC 22 ms
23,708 KB
testcase_36 AC 3 ms
6,944 KB
testcase_37 AC 16 ms
19,516 KB
testcase_38 AC 20 ms
22,504 KB
testcase_39 AC 18 ms
21,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main(){
  import std.stdio, std.string, std.conv, std.algorithm;
  import std.range;

  int n; rd(n);
  auto v=new int[](n), w=new int[](n);
  foreach(i; 0..n) rd(v[i], w[i]);
  int vmax; rd(vmax);

  const wmax=100000;
  auto rec=new int[][](n+1, wmax+5);
  foreach(i; 0..n){
    if(w[i]<=wmax) chmax(rec[i+1][w[i]], v[i]);
    for(int j=1; j<=wmax; j++){
      chmax(rec[i+1][j], rec[i][j]);
      if(j+w[i]<=wmax && rec[i][j]>0) chmax(rec[i+1][j+w[i]], rec[i][j]+v[i]);
    }
  }
  auto arr=rec[n][0..(wmax+1)]; // [0, wmax]
  for(int i=1; i<=wmax; i++) chmax(arr[i], arr[i-1]);
  auto p=assumeSorted(arr);
  writeln(max(1, p.lowerBound(vmax).length));
  auto ub=p.upperBound(vmax);
  if(ub.length>0) writeln(p.length-ub.length-1);
  else writeln("inf");
  
}

void chmax(T)(ref T x, T y){
  if(x<y) x=y;
}

void rd(T...)(ref T x){
  import std.stdio, std.string, std.conv;
  auto l=readln.split;
  assert(l.length==x.length);
  foreach(i, ref e; x){
    e=l[i].to!(typeof(e));
  }
}
0