Submission #1079189

#TimeUsernameProblemLanguageResultExecution timeMemory
1079189vjudge1Catfish Farm (IOI22_fish)C++17
Compilation error
0 ms0 KiB
#include "fish.h" #include <bits/stdc++.h> using namespace std; long long max_weights(int N, int M, std::vector<int> X, std::vector<int> Y, std::vector<int> W) { long long ok=1,ok1=1; fore(i,0,M) { if(X[i] % 2) ok=0; if(X[i] > 1) ok1=0; } long long ans=0; if(ok) fore(i,0,M) ans+=W[i]; else if(ok1) { long long sum1=0,sum2=0; fore(i,0,M) { if(X[i] == 0) sum1+=W[i]; else sum2+=W[i]; } ans = max(sum1,sum2); } else { long long dp[N+5]; memset(dp,0,sizeof dp); long long grid[N+5]; memset(grid,0,sizeof grid); fore(i,0,M) grid[X[i]] = W[i]; fore(i,0,N) { dp[i] = grid[i]; if(i > 1) dp[i] += dp[i-2]; if(i) dp[i] = max(dp[i],dp[i-1]); } ans = dp[n-1]; } return ans; return 0; }

Compilation message (stderr)

fish.cpp: In function 'long long int max_weights(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
fish.cpp:10:10: error: 'i' was not declared in this scope
   10 |     fore(i,0,M) {
      |          ^
fish.cpp:10:5: error: 'fore' was not declared in this scope
   10 |     fore(i,0,M) {
      |     ^~~~
fish.cpp:43:18: error: 'n' was not declared in this scope
   43 |         ans = dp[n-1];
      |                  ^