# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
81678 | wzy | 선물상자 (IOI15_boxes) | C++11 | 15 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "boxes.h"
using namespace std;
long long delivery(int N, int K, int L, int p[]) {
#define int long long
int ans = (int) 1e18;
int k = K;
int n = N;
int l = L;
for(int j = N - 1 ; j >= 0 ; j--){
for(int r = 0 ; (j - k*r + 1) >= 0 ; r++){
int u = j - k*r + 1;
if(u > j) continue;
// cout<<u<<" " << j <<" " << ans << endl;
ans = min(ans , 2*p[u]*((u+1)/k + ((u+1)%k ? 1 : 0)) + 2*(L - p[j])*((n - j)/k + ((n-j)%k ? 1 : 0)) + L*((j-u+1)/k + ((j-u+1)%k ? 1 : 0)));
// cout<<u<<" " << j <<" " << ans << endl;
}
// cout<<"__"<<endl;
// cout<<j <<" " << ans << endl;
ans = min(ans , 2*(L - p[j])*((n-j)/k + ((n-j)%k ? 1 : 0)) + L*((j)/k + (j%k ? 1 : 0)));
// cout<<j <<" " << ans << endl;
int i = j;
ans = min(ans , 2*p[i]*((i+1)/k + ((i+1)%k ? 1 : 0)) + L *((n-i-1)/k + ((n-i-1)%k ? 1 : 0)));
// cout<<j <<" " << ans <<" "<<endl;
// cout<<"__"<<endl;
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |