# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
396944 | Andyvanh1 | 선물상자 (IOI15_boxes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <vector>
#include <set>
#include <stack>
#include <queue>
#include <map>
#include <math.h>
using namespace std;
#define pb push_back
#define INF INT32_MAX
#define vt vector
typedef vt<int> vi;
typedef pair<int,int> pii;
typedef tuple<int,int,int> tiii;
typedef long long ll;
ll delivery(int n, int k, int l, vi arr){
if(k==1){
ll ans = 0;
for(int i = 0; i < n; i++){
ans+=2*min(arr[i],l-arr[i]);
}
return ans;
}else if(k==n){
if(arr[n-1]<=l/2){
return arr[n-1]*2;
}else if(arr[0]>l/2){
return 2* (l-arr[0]);
}else{
return l;
}
}
return 0;
}