# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
242688 | lyc | 선물상자 (IOI15_boxes) | C++14 | 5 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include <bits/stdc++.h>
using namespace std;
#define TRACE(x) cerr << #x << " :: " << x << endl
#define _ << " " <<
#define FOR(i,a,b) for(int i=(a);i<=(b);++i)
#define RFOR(i,a,b) for(int i=(a);i>=(b);--i)
#define SZ(x) ((int)(x).size())
#define ALL(x) (x).begin(),(x).end()
using ll=long long;
const int mxN = 1e7;
ll d[mxN];
ll delivery(int N, int K, int L, int p[]) {
int half = -1;
FOR(i,0,N-1){
if (p[i]*2 <= L) {
d[i] = (i < K ? 0 : d[(i/K)*K-1]) + p[i], half = i;
} else break;
}
RFOR(i,N-1,0){
if (p[i]*2 > L) {
d[i] = (N-1-i < K ? 0 : d[N-1-((N-1-i)/K*K-1)]) + (L-p[i]);
} else break;
}
d[N] = 0;
ll ans = 2*d[half] + 2*d[half+1];
FOR(i,0,min(half,N-K)){
# | 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... |