結果
問題 | No.951 【本日限定】1枚頼むともう1枚無料! |
ユーザー | nebukuro09 |
提出日時 | 2019-12-17 03:10:53 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 949 bytes |
コンパイル時間 | 839 ms |
コンパイル使用メモリ | 124,224 KB |
実行使用メモリ | 739,696 KB |
最終ジャッジ日時 | 2024-06-22 03:41:35 |
合計ジャッジ時間 | 10,670 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,884 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 80 ms
22,060 KB |
testcase_10 | AC | 44 ms
14,228 KB |
testcase_11 | AC | 47 ms
14,828 KB |
testcase_12 | AC | 723 ms
162,396 KB |
testcase_13 | TLE | - |
testcase_14 | AC | 362 ms
94,252 KB |
testcase_15 | AC | 391 ms
103,684 KB |
testcase_16 | AC | 621 ms
155,556 KB |
testcase_17 | AC | 743 ms
184,720 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,944 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 44 ms
14,076 KB |
testcase_22 | AC | 16 ms
6,944 KB |
testcase_23 | AC | 25 ms
9,028 KB |
testcase_24 | MLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop; void main() { auto s = readln.split.map!(to!int); auto N = s[0]; auto M = s[1]; auto A = iota(N).map!(_ => readln.split.map!(to!int).array).array; A.sort!"a[0] > b[0]"; auto dp = new int[][][](N+1, M+1, 2); foreach (i; 0..N+1) foreach (j; 0..M+1) dp[i][j][1] = -(1 << 29); foreach (i; 0..N) foreach (j; 0..M+1) { int p = A[i][0]; int d = A[i][1]; dp[i+1][j][0] = max(dp[i+1][j][0], dp[i][j][0]); dp[i+1][j][1] = max(dp[i+1][j][1], dp[i][j][1]); if (p + j <= M) dp[i+1][j+p][1] = max(dp[i+1][j+p][1], dp[i][j][0] + d); dp[i+1][j][0] = max(dp[i+1][j][0], dp[i][j][1] + d); } int ans = 0; foreach (j; 0..M+1) foreach (k; 0..2) ans = max(ans, dp[N][j][k]); ans.writeln; }