Submission #834094

# Submission time Handle Problem Language Result Execution time Memory
834094 2023-08-22T10:43:24 Z Trumling Catfish Farm (IOI22_fish) C++17
0 / 100
18 ms 4532 KB
#include "fish.h"
#include<bits/stdc++.h>
using namespace std;

#define F first
#define S second
#define all(x) x.begin(),x.end()
typedef long long ll;
#define pb push_back
#define INF 9999999999999999

long long max_weights(int N, int M, vector<int> X, vector<int> Y,vector<int> W) 
{
  vector<vector<ll>>dp(2,vector<ll>(N,0));
  vector<int>w(N,0);
  for(int i=0;i<M;i++)
    w[i]=W[i];
  
  
  dp[1][0]=0;
  for(int i=1;i<N;i++)
  {

      dp[1][i]=dp[0][i-1]+w[i];
      dp[0][i]=max(dp[0][i-1],dp[1][i-1]);

      dp[0][i]=max(dp[0][i],((i>1)?max(dp[1][i-2],dp[0][i-2]):0)+w[i-1]);
  }
  ll ans=0;
  for(int i=0;i<N;i++)
    ans=max(ans,max(dp[0][i],dp[1][i]));

    return ans;
}

Compilation message

fish.cpp: In function 'long long int max_weights(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
fish.cpp:30:3: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   30 |   for(int i=0;i<N;i++)
      |   ^~~
fish.cpp:33:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   33 |     return ans;
      |     ^~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 18 ms 4308 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '30952477995440'
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: '2', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 2644 KB Output is correct
2 Correct 2 ms 2644 KB Output is correct
3 Incorrect 14 ms 4532 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '20503244106163'
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 2 ms 2644 KB Output is correct
2 Correct 2 ms 2644 KB Output is correct
3 Incorrect 14 ms 4532 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '20503244106163'
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 18 ms 4308 KB 1st lines differ - on the 1st token, expected: '40313272768926', found: '30952477995440'
2 Halted 0 ms 0 KB -