제출 #608483

#제출 시각아이디문제언어결과실행 시간메모리
608483loctildore선물상자 (IOI15_boxes)C++14
컴파일 에러
0 ms0 KiB
#include "boxes.h"
#include <bits/stdc++.h>
using namespace std;
// trans rights
#define ll long long
#define f first
#define s second
#define endl '\n'
#define all(x) begin(x), end(x)
ll n,k,l;
ll dp1[10000069],dp2[10000069];
long long delivery(ll N, ll K, ll Li, ll p[]) {
  n=N;k=K;l=Li;
  for (ll i = 0; i < n; i++) {
    if (i<k) {
      dp1[i]=p[i];
    }
    else {
      dp1[i]=dp1[i-k]+p[i];
    }
  }
  for (ll i = n-1; ~i; i--) {
    if (n<=k+i) {
      dp2[i]=l-p[i];
    }
    else {
      dp2[i]=l-p[i]+dp2[i+k];
    }
  }
  ll ans=dp2[0];
  for (ll i = 0; i < n; i++) {
    ans=min(ans,dp1[i]+dp2[i+1]);
  }
  return ans*2;
}

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

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