QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#586994#5303. No Bug No GameNephrennRE 0ms3716kbC++201.1kb2024-09-24 16:59:342024-09-24 16:59:35

Judging History

你现在查看的是最新测评结果

  • [2024-09-24 16:59:35]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:3716kb
  • [2024-09-24 16:59:34]
  • 提交

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...

output:


result: