結果
問題 | No.626 Randomized 01 Knapsack |
ユーザー | ikd |
提出日時 | 2017-12-15 23:22:50 |
言語 | D (dmd 2.106.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 830 bytes |
コンパイル時間 | 985 ms |
コンパイル使用メモリ | 112,388 KB |
実行使用メモリ | 7,348 KB |
最終ジャッジ日時 | 2024-06-12 23:08:42 |
合計ジャッジ時間 | 23,875 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 11 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 46 ms
6,656 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 980 ms
7,296 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1,234 ms
7,168 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 8 ms
5,376 KB |
ソースコード
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=5000; 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(); }