結果
問題 | No.2730 Two Types Luggage |
ユーザー | 👑 hos.lyric |
提出日時 | 2024-04-19 21:59:36 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 333 ms / 2,000 ms |
コード長 | 2,111 bytes |
コンパイル時間 | 1,970 ms |
コンパイル使用メモリ | 122,680 KB |
実行使用メモリ | 52,816 KB |
最終ジャッジ日時 | 2024-10-11 15:05:22 |
合計ジャッジ時間 | 10,281 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 11 ms
5,248 KB |
testcase_11 | AC | 231 ms
46,792 KB |
testcase_12 | AC | 322 ms
49,976 KB |
testcase_13 | AC | 183 ms
29,524 KB |
testcase_14 | AC | 235 ms
46,776 KB |
testcase_15 | AC | 73 ms
27,664 KB |
testcase_16 | AC | 83 ms
11,364 KB |
testcase_17 | AC | 296 ms
48,588 KB |
testcase_18 | AC | 273 ms
52,592 KB |
testcase_19 | AC | 24 ms
5,652 KB |
testcase_20 | AC | 108 ms
20,460 KB |
testcase_21 | AC | 219 ms
44,784 KB |
testcase_22 | AC | 305 ms
49,624 KB |
testcase_23 | AC | 28 ms
6,120 KB |
testcase_24 | AC | 127 ms
22,728 KB |
testcase_25 | AC | 238 ms
47,220 KB |
testcase_26 | AC | 62 ms
11,392 KB |
testcase_27 | AC | 219 ms
44,876 KB |
testcase_28 | AC | 119 ms
21,624 KB |
testcase_29 | AC | 274 ms
52,816 KB |
testcase_30 | AC | 40 ms
22,532 KB |
testcase_31 | AC | 178 ms
29,056 KB |
testcase_32 | AC | 160 ms
26,188 KB |
testcase_33 | AC | 327 ms
50,608 KB |
testcase_34 | AC | 333 ms
50,480 KB |
testcase_35 | AC | 330 ms
50,612 KB |
testcase_36 | AC | 325 ms
50,608 KB |
testcase_37 | AC | 325 ms
50,616 KB |
ソースコード
import std.conv, std.functional, std.range, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons; import core.bitop; class EOFException : Throwable { this() { super("EOF"); } } string[] tokens; string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; } int readInt() { return readToken.to!int; } long readLong() { return readToken.to!long; } string COLOR(string s = "") { return "\x1b[" ~ s ~ "m"; } bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } } bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } } int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; } int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); } int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); } void main() { try { for (; ; ) { const N = readInt; const M = readInt; const W = readLong; auto A = new long[N]; foreach (i; 0 .. N) A[i] = readLong; auto B = new long[M]; foreach (j; 0 .. M) B[j] = readLong; auto C = new long[M]; foreach (j; 0 .. M) C[j] = readLong; A.sort!"a > b"; auto ASum = new long[N + 1]; foreach (i; 0 .. N) ASum[i + 1] = ASum[i] + A[i]; auto BSum = new long[1 << M]; auto CSum = new long[1 << M]; foreach (j; 0 .. M) { foreach (p; 0 .. 1 << j) { BSum[p | 1 << j] = BSum[p] + B[j]; CSum[p | 1 << j] = CSum[p] + C[j]; } } long ans; foreach (p; 0 .. 1 << M) if (BSum[p] <= W) { long score = CSum[p]; score += ASum[min(W - BSum[p], N)]; chmax(ans, score); } writeln(ans); } } catch (EOFException e) { } }