結果

問題 No.626 Randomized 01 Knapsack
ユーザー ikdikd
提出日時 2017-12-15 23:23:29
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 831 bytes
コンパイル時間 1,021 ms
コンパイル使用メモリ 110,336 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-06-12 23:08:50
合計ジャッジ時間 6,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 11 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 297 ms
12,288 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

  size_t B=50000;
  alias T=Tuple!(long, "vsum", long, "wsum");
  T[] cur; cur~=T(0, 0);
  foreach(i; 0..n){
    T[] nex;
    foreach(e; cur){
      nex~=e;
      if(e.wsum+w[i]<=wmax) nex~=T(e.vsum+v[i], e.wsum+w[i]);
    }
    sort!((x, y)=>(x.vsum>y.vsum))(nex);
    if(nex.length>B) cur=nex[0..B];
    else cur=nex;
  }

  writeln(cur[0].vsum);
}

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));
  }
}
void wr(T...)(T x){
  import std.stdio;
  foreach(e; x) stderr.write(e, " ");
  stderr.writeln();
}
0