Submission #800776

# Submission time Handle Problem Language Result Execution time Memory
800776 2023-08-01T20:37:42 Z Liudas Horses (IOI15_horses) C++17
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;
int init(int N, vector<int> X, vector<int> Y){
    int ans = 0;
    for(int i = 0; i < N; i ++){
        if(i){
            X[i] *= X[i-1];
        }
        ans = max(ans, X[i]*Y[i]);
    }
    return ans;
}
int updateX(int pos, int val){
    return 0;
}
int updateY(int pos, int val){
    return 0;
}

Compilation message

horses.cpp: In function 'int updateX(int, int)':
horses.cpp:13:17: warning: unused parameter 'pos' [-Wunused-parameter]
   13 | int updateX(int pos, int val){
      |             ~~~~^~~
horses.cpp:13:26: warning: unused parameter 'val' [-Wunused-parameter]
   13 | int updateX(int pos, int val){
      |                      ~~~~^~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:16:17: warning: unused parameter 'pos' [-Wunused-parameter]
   16 | int updateY(int pos, int val){
      |             ~~~~^~~
horses.cpp:16:26: warning: unused parameter 'val' [-Wunused-parameter]
   16 | int updateY(int pos, int val){
      |                      ~~~~^~~
/usr/bin/ld: /tmp/ccQk27nc.o: in function `main':
grader.c:(.text.startup+0xaa): undefined reference to `init(int, int*, int*)'
collect2: error: ld returned 1 exit status