Submission #629077

# Submission time Handle Problem Language Result Execution time Memory
629077 2022-08-14T07:07:54 Z kwongweng Catfish Farm (IOI22_fish) C++17
0 / 100
28 ms 4204 KB
#include "fish.h"

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

typedef long long ll;
typedef vector<int> vi;
#define FOR(i,a,b) for(int i = a; i < b; i++)

ll max_weights(int N, int M, vi X, vi Y, vi W) {
  vector<ll> A(N);
  FOR(i,0,M){
    A[X[i]] = W[i];
  }
  ll dp[N][2]; memset(dp,0,sizeof(dp));
  if (N>1){
    dp[1][0] = A[1];
    dp[0][1] = A[0];
  }
  FOR(i,2,N){
    dp[i][0] = dp[i-1][1] + A[i];
    dp[i][1] = max(dp[i-1][0], dp[i-2][0] + A[i-1]);
  }
  return max(dp[N-1][0], dp[N-1][1]);
}
# Verdict Execution time Memory Grader output
1 Incorrect 28 ms 4204 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 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 Incorrect 2 ms 2644 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 1 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 1 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 1 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 2 ms 2644 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 28 ms 4204 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '0'
2 Halted 0 ms 0 KB -