Submission #1031930

# Submission time Handle Problem Language Result Execution time Memory
1031930 2024-07-23T08:45:32 Z Mr_Husanboy Catfish Farm (IOI22_fish) C++17
0 / 100
29 ms 5716 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]);
        dp[i][1] = max(dp[i][1], (i - 2 >= 0 ? dp[i - 2][0] : 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 29 ms 5716 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '803213453'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 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 Correct 2 ms 2652 KB Output is correct
2 Correct 1 ms 2652 KB Output is correct
3 Incorrect 18 ms 4688 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '21049836049923'
4 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: '3', found: '2'
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: '3', found: '2'
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: '3', found: '2'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 2652 KB Output is correct
2 Correct 1 ms 2652 KB Output is correct
3 Incorrect 18 ms 4688 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '21049836049923'
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 29 ms 5716 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '803213453'
2 Halted 0 ms 0 KB -