답안 #1056637

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1056637 2024-08-13T10:25:27 Z MercubytheFirst 메기 농장 (IOI22_fish) C++17
0 / 100
12 ms 2848 KB
#include "fish.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll inf = 1e9 + 37;


long long max_weights(signed N, signed M, vector<signed> X, vector<signed> Y, vector<signed> W) {
  W.push_back(0);
  vector<ll> dp(M);
  for(ll i = 0; i < M; ++i) {
    dp[i] = W[i + 1] + (i > 0 ? W[i - 1] : 0);
    if(i > 0) {
      dp[i] = max(dp[i], dp[i - 1] + W[i + 1]);
    }
    if(i > 1) {
      dp[i] = max(dp[i], dp[i - 2] + W[i + 1]);
    }
  }
  return *max_element(dp.begin(), dp.end());
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 12 ms 2848 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '40313217677446'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 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 -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB 1st lines differ - on the 1st token, expected: '10082010', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 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 -
# 결과 실행 시간 메모리 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 -
# 결과 실행 시간 메모리 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 -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB 1st lines differ - on the 1st token, expected: '10082010', found: '0'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 12 ms 2848 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '40313217677446'
2 Halted 0 ms 0 KB -