Submission #625479

# Submission time Handle Problem Language Result Execution time Memory
625479 2022-08-10T13:08:51 Z I_love_Hoang_Yen Catfish Farm (IOI22_fish) C++17
Compilation error
0 ms 0 KB
#include "bits/stdc++.h"
using namespace std;

#define int long long
struct Fish {
    int col, row;
    int weight;
};

int sub1(const std::vector<Fish>& fishes) {
    int res = 0;
    for (const auto& fish : fishes) {
        res += fish.weight;
    }
    return res;
}

int solve(int n, const std::vector<Fish>& fishes) {
    if (std::all_of(
                fishes.begin(), fishes.end(),
                [] (const Fish& f) { return f.col % 2 == 0; })) {
        return sub1(fishes);
    }
    return sub1(fishes);
}

int max_weights(int n, int nFish, int x[], int y[], int w[]) {
    std::vector<Fish> fishes;
    for (int i = 0; i < n; ++i) {
        fishes.push_back({x[i], y[i], w[i]});
    }
    return solve(n, fishes);
}

Compilation message

/usr/bin/ld: /tmp/cc1Qy0jb.o: in function `main':
grader.cpp:(.text.startup+0x25e): undefined reference to `max_weights(int, int, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >, std::vector<int, std::allocator<int> >)'
collect2: error: ld returned 1 exit status