# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
291679 | REALITYNB | 선물상자 (IOI15_boxes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define all(a) a.begin(),a.end()
using namespace std;
long long delivery(int n,int k , int l , vector<int> positions){
vector<int> fh , sh ;
for(int& x : positions){
if(x<=l-x){
fh.push_back(x) ;
}
else sh.push_back(l-x) ;
}
sort(all(fh)) ;
sort(all(sh)) ;
long long ans = 0 ;
while(fh.size()||sh.size()){
int kk = k ;
if(fh.empty()){
if(sh.empty()) break ;
while(sh.size()){
ans+=sh.back()*2 ;
while(kk--&&sh.size()){
sh.pop_back() ;
}
}
break ;
}
else if(sh.empty()){
if(fh.empty()) break ;
while(fh.size()){
ans+=fh.back()*2 ;
while(kk--&&fh.size()){
fh.pop_back() ;
}
}
}
if(sh.back()*2+fh.back()*2<=l){
while(fh.size()){
ans+=fh.back()*2 ;
while(kk--&&fh.size()){
fh.pop_back() ;
}
}
kk = k ;
while(sh.size()){
ans+=sh.back()*2 ;
while(kk--&&sh.size()){
sh.pop_back() ;
}
}
break ;
}
ans+=l ;
while(kk--){
if(sh.size()==0&&fh.empty()) break ;
if(fh.empty()){
sh.pop_back() ;
continue ;
}
if(sh.empty()){
fh.pop_back() ;
continue ;
}
if(fh.back()<=sh.back()) sh.pop_back() ;
else fh.pop_back() ;
}
}
return ans ;
}