답안 #625478

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
625478 2022-08-10T13:08:37 Z I_love_Hoang_Yen 메기 농장 (IOI22_fish) C++17
컴파일 오류
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);
}

int32_t main() {
}

Compilation message

/usr/bin/ld: /tmp/cc6RTMnf.o: in function `main':
grader.cpp:(.text.startup+0x0): multiple definition of `main'; /tmp/ccCKtcQf.o:fish.cpp:(.text.startup+0x0): first defined here
/usr/bin/ld: /tmp/cc6RTMnf.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