Submission #772012

# Submission time Handle Problem Language Result Execution time Memory
772012 2023-07-03T14:00:31 Z shrimb Fruits (NOI22_fruits) C++17
0 / 100
649 ms 65884 KB
#include"bits/stdc++.h"
using namespace std;

#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;

template<class x>
using ordered_set = tree<x, null_type,less<x>, rb_tree_tag,tree_order_statistics_node_update>;

#define int long long
#define endl '\n'
#define mod 1000000007
//\
#define mod 1686876991
const int maxn = 2002;
int n;
int dp[maxn][maxn];
int a[maxn], c[maxn], p[maxn], e[maxn], mx[maxn];
bool used[maxn];


signed main () {
    cin.tie(0)->sync_with_stdio(0);

    cin >> n;

    for (int i = 1 ; i <= n ; i++) {
        cin >> a[i];
        if (~a[i]) used[a[i]] = 1;
        else e[i] = 1;
        e[i] += e[i-1];
        mx[i] = max(mx[i-1], a[i]);
    }
    for (int i = 1 ; i <= n ; i++) {
        cin >> c[i];
        p[i] = p[i - 1] + !used[i];
    }

    for (int i = 1 ; i <= n ; i++) {
        for (int j = 1 ; j <= n ; j++) {
            dp[i][j] = dp[i][j-1];
            if (mx[i - 1] >= j) {
                dp[i][j] = -1e15;
            } else {
                if (a[i] == -1) {
                    if (!used[j]) dp[i][j] = max(dp[i][j], dp[i-1][j-1] + c[j]);
                    if (e[i] <= p[j]) dp[i][j] = max(dp[i][j], dp[i-1][j]);
                } else {
                    if (j < a[i]) dp[i][j] = -1e15;
                    else dp[i][j] = max(dp[i][j], dp[i-1][j]);
                    if (j == a[i]) dp[i][j] = max(dp[i][j], dp[i-1][j-1] + c[j]);
                }
            }
        }
        cout << max(0ll,dp[i][n]) << " ";
    }


}

Compilation message

Main.cpp:14:1: warning: multi-line comment [-Wcomment]
   14 | //\
      | ^
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 1364 KB Output is correct
2 Correct 30 ms 31704 KB Output is correct
3 Runtime error 153 ms 64376 KB Execution killed with signal 11
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 649 ms 65884 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -