이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define intt long long
multiset<int> pos;
int l;
intt minDist(int i , int j)
{
return min(abs(i - j) , l - abs(i - j));
}
int comb(int it1 , int it2 , int p)
{
if(minDist(p , it1) > minDist(p , it2))
return it2;
return it1;
}
long long delivery(int N, int K, int L, int p[])
{
l = L;
for(int i = 0 ; i < N ; i++)
pos.insert(p[i]);
int beg = 0;
intt ans = 0;
while(!pos.empty())
{
int cnt = K;
ans+= minDist(beg , 0);
beg = 0;
while(!pos.empty() && cnt--)
{
int best = *pos.begin();
best = comb(best , *pos.rbegin() , beg);
if(pos.lower_bound(beg) != pos.end())
{
best = comb(best , *pos.lower_bound(beg) , beg);
}
if(pos.lower_bound(beg) != pos.begin())
{
best = comb(best , *prev(pos.lower_bound(beg)) , beg);
}
ans+= minDist(best , beg);
pos.erase(pos.find(best));
beg = best;
}
}
ans+= minDist(0 , beg);
return ans;
}
/*
int main() {
int N , K , L;
cin>>N>>K>>L;
vector<int> p(N);
for(auto &x : p)
cin>>x;
cout<<delivery(N , K , L, p)<<endl;
}
*/
# | 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... |