# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
380150 | Theo830 | 선물상자 (IOI15_boxes) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll,ll> ii;
#define iii pair<ll,ii>
#define f(i,a,b) for(int i = a;i < b;i++)
#define pb push_back
#define vll vector<ll>
#define F first
#define S second
#define all(x) (x).begin(), (x).end()
///I hope I will get uprating and don't make mistakes
///I will never stop programming
///sqrt(-1) Love C++
///Please don't hack me
///@TheofanisOrfanou Theo830
///Think different approaches (bs,dp,greedy,graphs,shortest paths,mst)
///Stay Calm
///Look for special cases
///Beware of overflow and array bounds
///Think the problem backwards
///Training
ll delivery(int n, int k, int l, int ar[]) {
ll ans = 1e18;
vector<int>arr;
sort(ar,ar+n);
f(i,0,n){
if(ar[i] != 0){
arr.pb(arr[i])
}
}
n = arr.size();
f(p,0,n+1){
int pos = 0;
ll res = 0;
while(p != 0){
res += min(l,2 * arr[pos]);
if(pos == p-1){
break;
}
pos = min(p-1,pos+k);
}
int p2 = n - p;
pos = 0;
while(p2 != 0){
res += min(l,2 * (l - arr[n-1-pos]));
if(pos == p2-1){
break;
}
pos = min(p2-1,pos+k);
}
ans = min(ans,res);
}
return ans;
}