이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#define deb(...) logger(#__VA_ARGS__, __VA_ARGS__)
template<typename ...Args>
void logger(string vars, Args&&... values) {
cerr<<vars<<" = ";
string delim="";
(...,(cerr<<delim<<values,delim=", "));
cerr<<"\n";
}
#else
#define deb(...) logger(#__VA_ARGS__, __VA_ARGS__)
template<typename ...Args>
void logger(string vars, Args&&... values) {}
#endif
#define pb push_back
#define sz(x) (int)(x.size())
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
template<typename T> inline void maxa(T& a,T b){a=max(a,b);}
template<typename T> inline void mina(T& a,T b){a=min(a,b);}
ll delivery(int N, int K, int L, int positions[]){
ll ans=0;
vector<ll> pref(N),suff(N);
for(int i=0;i<N;i++){
if(i<K){
pref[i]=min(2*positions[i],L);
} else{
pref[i]=pref[i/K*K-1]+min(2*positions[i],L);
}
}
for(int i=N-1;i>=0;i--){
if(N-i-1<K){
suff[i]=min(2*(L-positions[i]),L);
} else{
suff[i]=suff[N-1-(N-i-1)/K*K+1]+min(2*(L-positions[i]),L);
}
}
ans=min(pref[N-1],suff[0]);
for(int i=0;i<N-1;i++)
mina(ans,pref[i]+suff[i+1]);
return ans;
}
# | 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... |