이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
# include <iostream>
using namespace std;
long long delivery( int N, int K, int L, int positions[] )
{
long long answer = 0;
int cnt = N, jnt = 0;
while( cnt > 0 ){
long long l = positions[ jnt ];
jnt += min( cnt, K );
cnt -= min( cnt, K );
long long r = positions[ jnt - 1 ];
long long mnl = min( l, L - l );
long long mnr = min( (L - r), r );
answer += min( L - l + mnl, r + mnr );
}
return answer;
}
/*
int main()
{
int N, K, L, positions[1000];
cin >> N >> K >> L;
for ( int i = 0; i < N; i ++ ){
cin >> positions[i];
}
cout << delivery( N, K, L, positions );
return 0;
}
/*
3 2 8
1 2 5
*/
/**/
컴파일 시 표준 에러 (stderr) 메시지
boxes.cpp:37:1: warning: "/*" within comment [-Wcomment]
/*
# | 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... |