# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
856438 | NeroZein | Dancing Elephants (IOI11_elephants) | C++17 | 5218 ms | 23280 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 "elephants.h"
#include "bits/stdc++.h"
using namespace std;
const int B = 450;
int n, l;
int tot, qc;
vector<int> a;
vector<int> bucket;
vector<int> nxt, cnt;
vector<int> in_bucket[B];
void calc(int bucket_num) {
int m = in_bucket[bucket_num].size();
if (m == 0) {
return;
}
int p = m - 1;
for (int i = m - 1; i >= 0; --i) {
int cur = in_bucket[bucket_num][i];
while (a[in_bucket[bucket_num][p]] - a[cur] > l) {
p--;
}
if (p == m - 1) {
cnt[cur] = 1;
nxt[cur] = a[cur] + l;
} else {
nxt[cur] = nxt[in_bucket[bucket_num][p + 1]];
# | 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... |