# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
542426 | two_sides | Minerals (JOI19_minerals) | C++17 | 66 ms | 4392 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "minerals.h"
#include <bits/stdc++.h>
namespace {
using namespace std;
const int N = 43005;
int cost[N], best[N], cur = 0;
void Prepare() {
cost[1] = 0; best[1] = 1;
for (int i = 2; i < N; i++) {
int j = best[i - 1];
if (cost[i - j - 1] + cost[j + 1] +
j + 1 < cost[i - j] + cost[j] + j) j++;
cost[i] = cost[i - j] + cost[j] + j + i;
best[i] = j;
}
}
void Split(vector<int> x, vector<int> y, bool f) {
if (x.size() == 1)
return Answer(x[0], y[0]);
int n = x.size(), len = best[n];
vector<int> nx[2], ny[2];
for (int i = 0; i < len; i++) {
nx[f ^ 1].push_back(x[i]);
cur = Query(x[i]);
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |