# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
133060 | ckodser | 선물상자 (IOI15_boxes) | C++14 | 73 ms | 78712 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include<bits/stdc++.h>
#define ll long long
#define F first
#define S Second
#define pb push_back
#define pii pair<ll,ll>
#define mp make_pair
using namespace :: std;
const ll maxn=1e7+500;
const ll inf=1e17+900;
ll sagh(ll n,ll k){return (n/k)+(n%k!=0);}
ll dp[maxn];
long long delivery(int n, int k, int L, int p[]) {
fill(dp,dp+maxn,inf);
ll u=n%k;
for(ll i=0;i<=u;i++){
vector<ll> l,r,vec;
l.reserve(n/k+2);
r.reserve(n/k+2);
for(ll j=i+k-1;j<n;j+=k){
l.pb(2*p[j]);
}
ll ii=u-i;
ll cnt=1;
for(ll j=n-ii-k;j>=0;j-=k){
r.pb(2*(L-p[j]));
}
ll ct=0;
if(i)ct+=2*p[i-1];
if(ii)ct+=2*(L-p[n-ii]);
for(auto v:l)vec.pb(v);
for(auto v:r)vec.pb(v);
sort(vec.begin(),vec.end());
ll pr=0;
for(ll j=0;j<vec.size();j++){
dp[j*k+u]=min(dp[j*k+u],ct+pr);
pr+=vec[j];
}
dp[vec.size()*k+u]=min(dp[vec.size()*k+u],ct+pr);
}
ll ans=sagh(n,k)*L;
for(ll i=0;i*k<=n;i++){
ans=min(ans,dp[n-i*k]+L*i);
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |