답안 #1055940

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1055940 2024-08-13T06:42:42 Z amirhoseinfar1385 메기 농장 (IOI22_fish) C++17
컴파일 오류
0 ms 0 KB
#include "fish.h"
#include<bits/stdc++.h>
using namespace std;

int n;
long long max_weights(int N, int M, std::vector<int> X, std::vector<int> Y,
                      std::vector<int> W) {
    long long sum1=0,sum0=0,res=0,f=0;
    n=N;
    m=(int)X.size();
    for(int i=0;i<m;i++){
        res+=W[i];
        if(X[i]==0){
            sum0+=W[i];
        }else if(X[i]==1){
            sum1+=W[i];
        }
        if(X[i]&1){
            f=1;
        }
    }
    if(f==1){
        return max(sum1,sum0);
    }
  return res;
}

Compilation message

fish.cpp: In function 'long long int max_weights(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
fish.cpp:10:5: error: 'm' was not declared in this scope
   10 |     m=(int)X.size();
      |     ^