# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
567553 | ngpin04 | 선물상자 (IOI15_boxes) | C++17 | 902 ms | 339556 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "boxes.h"
#define fi first
#define se second
#define mp make_pair
#define TASK ""
#define bit(x) (1LL << (x))
#define getbit(x, i) (((x) >> (i)) & 1)
#define ALL(x) (x).begin(), (x).end()
using namespace std;
template <typename T1, typename T2> bool mini(T1 &a, T2 b) {
if (a > b) {a = b; return true;} return false;
}
template <typename T1, typename T2> bool maxi(T1 &a, T2 b) {
if (a < b) {a = b; return true;} return false;
}
mt19937_64 rd(chrono::steady_clock::now().time_since_epoch().count());
int rand(int l, int r) {
return l + rd() % (r - l + 1);
}
const int N = 1e7 + 5;
const int oo = 1e9;
const long long ooo = 1e18;
const int mod = 1e9 + 7; // 998244353;
const long double pi = acos(-1);
long long best[N];
long long pre[N];
long long suf[N];
int a[N];
int n,k,l;
long long solve() {
sort(a + 1, a + n + 1);
for (int i = 1; i <= n; i++)
pre[i] = 2 * a[i] + pre[max(0, i - k)];
for (int i = n; i >= 1; i--)
suf[i] = 2 * (l - a[i]) + suf[min(n + 1, i + k)];
// for (int i = 1; i <= n; i++)
// cerr << pre[i] << " " << suf[i] << "\n";
for (int i = 0; i < k; i++)
best[i] = ooo;
long long ans = 1LL * ((n + k - 1) / k) * l;
for (int r = 0; r <= n; r++) {
mini(best[r % k], pre[r] - (long long) (r / k) * l);
mini(ans, best[r % k] + (long long) (r / k) * l + suf[r + 1]);
}
return ans;
}
long long delivery(int N, int K, int L, int p[]) {
n = N;
k = K;
l = L;
for (int i = 0; i < n; i++)
a[i + 1] = p[i];
return solve();
}
//#include "grader.cpp"
컴파일 시 표준 에러 (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... |