Submission #977931

# Submission time Handle Problem Language Result Execution time Memory
977931 2024-05-08T14:03:46 Z KasymK Boxes with souvenirs (IOI15_boxes) C++17
Compilation error
0 ms 0 KB
#include "bits/stdc++.h"
#include "boxes.h"

using namespace std;

long long delivery(int n, int k, int l, vector<int> positions){
    long long answer = 0;
    for(int &i : positions)
        answer += (min(i, l - i) << 1);
    return answer;
}

Compilation message

boxes.cpp: In function 'long long int delivery(int, int, int, std::vector<int>)':
boxes.cpp:6:24: warning: unused parameter 'n' [-Wunused-parameter]
    6 | long long delivery(int n, int k, int l, vector<int> positions){
      |                    ~~~~^
boxes.cpp:6:31: warning: unused parameter 'k' [-Wunused-parameter]
    6 | long long delivery(int n, int k, int l, vector<int> positions){
      |                           ~~~~^
/usr/bin/ld: /tmp/ccoioQjJ.o: in function `main':
grader.c:(.text.startup+0x1ef): undefined reference to `delivery(int, int, int, int*)'
collect2: error: ld returned 1 exit status