QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#586994 | #5303. No Bug No Game | Nephrenn | RE | 0ms | 3716kb | C++20 | 1.1kb | 2024-09-24 16:59:34 | 2024-09-24 16:59:35 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
const i64 INF = 0x3f3f3f3f3f3f3f3f;
const int MAXN = 3010;
int n, k, p[MAXN];
i64 w[MAXN][20];
i64 dp[MAXN];
vector<int> not_select[MAXN];
void solve () {
cin >> n >> k;
for (int i = 1; i <= n; ++i) {
cin >> p[i];
for (int j = 1; j <= p[i]; ++j) {
cin >> w[i][j];
}
}
for (int i = 1; i <= n; ++i) {
for (int j = k; j >= p[i]; --j) {
if (dp[j] >= dp[j - p[i]] + w[i][p[i]]) {
not_select[j].push_back(i);
} else {
dp[j] = dp[j - p[i]] + w[i][p[i]];
}
}
}
i64 ans = dp[k];
for (int i = k - 1; i >= 0; --i) {
int sp = k - i;
for (auto j : not_select[i]) {
ans = max(ans, dp[i] + w[j][sp]);
}
}
cout << ans << "\n";
}
int main () {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t = 1;
// cin >> t;
while (t--) {
solve ();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3716kb
input:
4 5 2 1 3 2 1 1 2 3 1 2 1 3
output:
9
result:
ok 1 number(s): "9"
Test #2:
score: -100
Runtime Error
input:
3000 3000 10 70562 30723 79371 82224 63977 3362 26909 96449 48163 66159 4 18007 33590 80674 91139 4 10304 31694 70745 50656 10 63090 17226 13187 73881 38137 15237 55750 82751 75854 39658 8 95640 66120 87735 36388 44046 92415 6952 94772 9 60565 27904 98726 87052 35768 25453 14563 34273 92501 10 66332...