제출 #1122403

#제출 시각아이디문제언어결과실행 시간메모리
1122403heeyBoxes with souvenirs (IOI15_boxes)C++17
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h>
#define int long long
#define f first
#define s second
#define all(x) (x).begin(), (x).end()
#define mod 1'000'000'007
#define inf 1'000'000'000'000'00
#define pb push_back
#define vvi vector<vi>
#define fst cin.tie(0);cout.tie(0);ios_base::sync_with_stdio(false);
using namespace std;
#include "boxes.h"


int delivery(int n, int k, int l, int p[]){
	int res = 0;
	int d = 0;
	int i = 0;
	int j = n-1;
	while(i <= j){
		int c = k;
		int prev = 0;
		while(i <= j && i < n && c > 0){
			res += 2*(p[i] - prev);
			d++;
			c--;

			prev = p[i];
			i++;
			if(i != n && p[i] - prev > l - p[i]) break;
		}

		//right
		c = k;
		prev = l;
		while(i <= j && j >= 0 && c > 0){
			res += 2*(prev - p[j]);
			d++;
			c--;

			prev = p[j];
			j--;
			if(j > 0 && prev - p[j] > p[j]) break;
		}

	}
	return res;
}

컴파일 시 표준 에러 (stderr) 메시지

/usr/bin/ld: /tmp/ccwDe3wY.o: in function `main':
grader.c:(.text.startup+0x1ef): undefined reference to `delivery(int, int, int, int*)'
collect2: error: ld returned 1 exit status