# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1033254 | socpite | Horses (IOI15_horses) | C++17 | 375 ms | 53432 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 "horses.h"
#include<bits/stdc++.h>
using namespace std;
const int maxn = 5e5+5;
const int mod = 1e9+7;
int st_max[4*maxn], st_prod[4*maxn];
int mult[maxn], cost[maxn];
int n;
void build(int X[], int Y[], int l = 0, int r = n-1, int id = 1){
if(l == r){
st_max[id] = Y[l];
st_prod[id] = X[l];
}
else {
int mid = (l+r)>>1;
build(X, Y, l, mid, id<<1);
build(X, Y, mid+1, r, id<<1|1);
st_max[id] = max(st_max[id<<1], st_max[id<<1|1]);
st_prod[id] = 1LL*st_prod[id<<1]*st_prod[id<<1|1]%mod;
}
}
void edit_max(int pos, int val, int l = 0, int r = n-1, int id = 1){
if(l == r)st_max[id] = val;
else {
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... |