Submission #626782

# Submission time Handle Problem Language Result Execution time Memory
626782 2022-08-11T18:54:14 Z moyindavid Catfish Farm (IOI22_fish) C++17
0 / 100
40 ms 8396 KB
#include "fish.h"

#include <bits/stdc++.h>
using namespace std;

long long max_weights(int N, int M, vector<int> X, vector<int> Y,vector<int> w) {
    map<int,long long> W;
    for(int i=0;i<M;i++) W[X[i]]=w[i];
    long long dp[N+5]{0};
    dp[N-1]=W[N-1];
    dp[N-2] = max(W[N-1],W[N-2]);
    for(int i=N-3;i>=0;i--){
        dp[i]=max(dp[i+1],W[i]+dp[i+2]);
    }
    return dp[0];
}
# Verdict Execution time Memory Grader output
1 Incorrect 38 ms 8396 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 212 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 20 ms 7260 KB Output is correct
2 Correct 20 ms 7340 KB Output is correct
3 Incorrect 40 ms 7900 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '16359027219341'
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 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 212 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 212 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 20 ms 7260 KB Output is correct
2 Correct 20 ms 7340 KB Output is correct
3 Incorrect 40 ms 7900 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '16359027219341'
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 38 ms 8396 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '803213453'
2 Halted 0 ms 0 KB -