Submission #1031913

# Submission time Handle Problem Language Result Execution time Memory
1031913 2024-07-23T08:40:21 Z Mr_Husanboy Catfish Farm (IOI22_fish) C++17
0 / 100
14 ms 5724 KB
#include "fish.h"
#include <bits/stdc++.h>

using namespace std;

#define ff first
#define ss second
#define all(a) (a).begin(), (a).end()
#define ll long long

template<typename T>
int len(T &a){
    return a.size();
}

mt19937 rng(chrono::high_resolution_clock::now().time_since_epoch().count());


long long max_weights(int n, int m, std::vector<int> x, std::vector<int> y,
                      std::vector<int> w) {
    vector<ll> s(n);
    for(int i = 0; i < m; i++) s[x[i]] = w[i];

    vector<array<ll, 2>> dp(n);
    dp[0][0] = dp[0][1] = 0;
    ll ans = 0;
    for(int i = 1; i < n; i ++){
        dp[i][0] = max(dp[i - 1][1] + s[i], dp[i - 1][0]);
        dp[i][1] = (dp[i - 1][1], dp[i - 1][0]);
        if(i - 2 >= 0) dp[i][1] = max(dp[i][1], dp[i - 2][0] + s[i - 1]);
        ans = max({ans, dp[i][1], dp[i][0]});
        //cout << dp[i][0] << ' ' << dp[i][1] << endl;
    }

    return ans;
}
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 5724 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB 1st lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 2648 KB 1st lines differ - on the 1st token, expected: '10082010', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB 1st lines differ - on the 1st token, expected: '3', found: '2'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB 1st lines differ - on the 1st token, expected: '3', found: '2'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB 1st lines differ - on the 1st token, expected: '3', found: '2'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 2648 KB 1st lines differ - on the 1st token, expected: '10082010', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 14 ms 5724 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '0'
2 Halted 0 ms 0 KB -