# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
390214 | mariowong | 선물상자 (IOI15_boxes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
long long n,m,l,a[10000005],dp[10000005];
deque <int> dq;
int main(){
ios::sync_with_stdio(false);
cin >> n >> m >> l;
for (int i=1;i<=n;i++){
cin >> a[i];
}
for (int i=1;i<=n;i++){
while (!dq.empty() && dq.front()+m <= i) dq.pop_front();
if (!dq.empty())
dp[i]=min(dp[max(0LL,i-m)]+a[i]*2,dp[dq.front()]+2*l-2*a[dq.front()+1]);
else
dp[i]=dp[max(0LL,i-m)]+a[i]*2;
while (!dq.empty() && dp[dq.back()]-2*a[dq.back()+1] > dp[i]-2*a[i+1])
dq.pop_back();
dq.push_back(i);
}
cout << dp[n] << "\n";
return 0;
}