# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
259347 | IOrtroiii | Horses (IOI15_horses) | C++14 | 344 ms | 75000 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 <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
const int MX = 1 << 19;
int N;
int X[MX], Y[MX];
pair<ld, int> best[MX << 2];
ld sum[MX << 2];
void pop(int v) {
best[v] = max(best[v << 1], make_pair(best[v << 1 | 1].first + sum[v << 1], best[v << 1 | 1].second));
sum[v] = sum[v << 1] + sum[v << 1 | 1];
}
void init(int v, int l, int r) {
if (l == r) {
best[v] = make_pair(log(X[l]) + log(Y[l]), l);
sum[v] = log(X[l]);
return;
}
int md = (l + r) >> 1;
init(v << 1, l, md);
init(v << 1 | 1, md + 1, r);
pop(v);
Compilation message (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... |