답안 #1031797

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1031797 2024-07-23T07:24:51 Z Malix 메기 농장 (IOI22_fish) C++17
0 / 100
18 ms 9296 KB
#include "fish.h"
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vii;
typedef pair<int,int> pi;
typedef vector<pi> pii;
typedef tuple<int,int,int> tii;
typedef vector<ll> li;
typedef vector<li> lii;

#define REP(i,a,b) for(int i=a;i<b;i++)
#define F first
#define S second
#define PB push_back
#define MP make_pair
#define LSOne(s) ((s)&(-s))

ll INF=1e16+10;
int inf=1e9+10;
ll M=1e9+7;

long long max_weights(int n, int m, std::vector<int> X, std::vector<int> Y,
                      std::vector<int> W) {
  vector<vector<ll>> dp(n,vector<ll>(2,0));
  vector<ll> arr(n,0);
  REP(i,0,m)arr[X[i]]=(ll)W[i];
  dp[0][0]=(ll)arr[1];
  dp[1][0]=(ll)arr[0];dp[1][1]=(ll)arr[0];
  if(n>2)dp[1][0]+=arr[2];
  REP(i,2,n){
    dp[i][1]=max(dp[i-1][0],dp[i-1][1]);
    dp[i][0]=max(dp[i-2][0],dp[i-2][1]+arr[i-1]);
    if(i!=n-1)dp[i][0]+=arr[i+1];
  }
  return max(dp[n-1][0],dp[n-1][1]);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 18 ms 9296 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '803213453'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB 1st lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 6492 KB Output is correct
2 Correct 5 ms 6504 KB Output is correct
3 Incorrect 14 ms 8116 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '21049836049923'
4 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 Correct 6 ms 6492 KB Output is correct
2 Correct 5 ms 6504 KB Output is correct
3 Incorrect 14 ms 8116 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '21049836049923'
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 18 ms 9296 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '803213453'
2 Halted 0 ms 0 KB -