# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
312642 |
2020-10-13T23:24:57 Z |
joseacaz |
Horses (IOI15_horses) |
C++17 |
|
1500 ms |
36856 KB |
#include "horses.h"
#include <bits/stdc++.h>
#define pb push_back
#define all(x) x.begin(), x.end()
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using vi = vector<int>;
using vl = vector<ll>;
using vpi = vector<pii>;
using vpl = vector<pll>;
struct Node
{
double pre, tot;
int x;
};
const int MOD = 1e9 + 7, MAXN = 5e5 + 5;
int N, X[MAXN], Y[MAXN];
double a[MAXN];
Node ST[4*MAXN];
Node operator +(const Node& _x, const Node& _y)
{
Node tmp;
tmp.pre = _x.pre;
tmp.x = _x.x;
tmp.tot = _x.tot + _y.tot;
if(_x.tot + _y.pre > _x.pre)
{
tmp.pre = _x.tot + _y.pre;
tmp.x = _y.x;
}
return tmp;
}
void build(int node = 0, int l = 0, int r = N - 1)
{
if(l == r)
{
ST[node] = Node{a[l], a[l], l};
//cerr << l << ", " << r << " : " << a[l] << " " << a[l] << " " << l << "\n";
return;
}
int mid = (l+r)/2, lchild = 2*node + 1, rchild = 2*node + 2;
build(lchild, l, mid);
build(rchild, mid + 1, r);
ST[node] = ST[lchild] + ST[rchild];
//cerr << l << ", " << r << " : " << ST[node].pre << " " << ST[node].tot << " " << ST[node].x << "\n";
}
void upd(int pos, double x, int node = 0, int l = 0, int r = N - 1)
{
if(r < pos || pos < l)
return;
if(l == r)
{
a[l] = x;
ST[node] = Node{x, x, l};
//cerr << l << ", " << r << " : " << ST[node].pre << " " << ST[node].tot << " " << ST[node].x << "\n";
return;
}
int mid = (l+r)/2, lchild = 2*node + 1, rchild = 2*node + 2;
upd(pos, x, lchild, l, mid);
upd(pos, x, rchild, mid + 1, r);
ST[node] = ST[lchild] + ST[rchild];
//cerr << l << ", " << r << " : " << ST[node].pre << " " << ST[node].tot << " " << ST[node].x << "\n";
}
int init(int _N, int _X[], int _Y[])
{
N = _N;
for(int i = 0; i < N; i++)
{
X[i] = _X[i];
Y[i] = _Y[i];
}
a[0] = log(X[0]) + log(Y[0]);
for(int i = 1; i < N; i++)
a[i] = log(X[i]) + log(Y[i]) - log(Y[i - 1]);
build();
int idx = ST[0].x, ans = 1;
//cerr << "\n" << idx << "\n";
for(int i = 0; i <= idx; i++)
{
ans *= X[i];
ans %= MOD;
}
ans *= Y[idx];
ans %= MOD;
return ans;
}
int updateX(int pos, int val)
{
upd(pos, log(val) - log(X[pos]));
X[pos] = val;
int idx = ST[0].x, ans = 1;
//cerr << ST[0].x << "\n";
for(int i = 0; i <= idx; i++)
{
ans *= X[i];
ans %= MOD;
}
ans *= Y[idx];
ans %= MOD;
return ans;
}
int updateY(int pos, int val)
{
upd(pos, log(val) - log(Y[pos]));
upd(pos + 1, log(Y[pos]) - log(val));
Y[pos] = val;
int idx = ST[0].x, ans = 1;
//cerr << ST[0].x << "\n";
for(int i = 0; i <= idx; i++)
{
ans *= X[i];
ans %= MOD;
}
ans *= Y[idx];
ans %= MOD;
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
384 KB |
Output is correct |
2 |
Correct |
0 ms |
384 KB |
Output is correct |
3 |
Correct |
1 ms |
384 KB |
Output is correct |
4 |
Correct |
0 ms |
384 KB |
Output is correct |
5 |
Correct |
1 ms |
384 KB |
Output is correct |
6 |
Correct |
1 ms |
384 KB |
Output is correct |
7 |
Correct |
1 ms |
384 KB |
Output is correct |
8 |
Correct |
1 ms |
384 KB |
Output is correct |
9 |
Correct |
1 ms |
384 KB |
Output is correct |
10 |
Correct |
1 ms |
384 KB |
Output is correct |
11 |
Correct |
0 ms |
384 KB |
Output is correct |
12 |
Correct |
0 ms |
384 KB |
Output is correct |
13 |
Correct |
1 ms |
384 KB |
Output is correct |
14 |
Correct |
1 ms |
384 KB |
Output is correct |
15 |
Correct |
1 ms |
384 KB |
Output is correct |
16 |
Correct |
0 ms |
384 KB |
Output is correct |
17 |
Correct |
1 ms |
384 KB |
Output is correct |
18 |
Correct |
0 ms |
384 KB |
Output is correct |
19 |
Correct |
1 ms |
384 KB |
Output is correct |
20 |
Correct |
1 ms |
384 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
384 KB |
Output is correct |
2 |
Correct |
0 ms |
384 KB |
Output is correct |
3 |
Correct |
1 ms |
384 KB |
Output is correct |
4 |
Correct |
0 ms |
384 KB |
Output is correct |
5 |
Correct |
1 ms |
384 KB |
Output is correct |
6 |
Correct |
0 ms |
384 KB |
Output is correct |
7 |
Correct |
1 ms |
384 KB |
Output is correct |
8 |
Correct |
1 ms |
384 KB |
Output is correct |
9 |
Correct |
0 ms |
384 KB |
Output is correct |
10 |
Correct |
1 ms |
384 KB |
Output is correct |
11 |
Correct |
0 ms |
384 KB |
Output is correct |
12 |
Correct |
0 ms |
384 KB |
Output is correct |
13 |
Correct |
1 ms |
384 KB |
Output is correct |
14 |
Correct |
1 ms |
384 KB |
Output is correct |
15 |
Correct |
0 ms |
384 KB |
Output is correct |
16 |
Correct |
1 ms |
384 KB |
Output is correct |
17 |
Correct |
0 ms |
384 KB |
Output is correct |
18 |
Correct |
0 ms |
384 KB |
Output is correct |
19 |
Correct |
1 ms |
384 KB |
Output is correct |
20 |
Correct |
1 ms |
384 KB |
Output is correct |
21 |
Incorrect |
0 ms |
384 KB |
Output isn't correct |
22 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1586 ms |
36856 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
384 KB |
Output is correct |
2 |
Correct |
1 ms |
384 KB |
Output is correct |
3 |
Correct |
1 ms |
384 KB |
Output is correct |
4 |
Correct |
1 ms |
384 KB |
Output is correct |
5 |
Correct |
1 ms |
384 KB |
Output is correct |
6 |
Correct |
1 ms |
384 KB |
Output is correct |
7 |
Correct |
0 ms |
384 KB |
Output is correct |
8 |
Correct |
1 ms |
384 KB |
Output is correct |
9 |
Correct |
0 ms |
384 KB |
Output is correct |
10 |
Correct |
1 ms |
384 KB |
Output is correct |
11 |
Correct |
0 ms |
384 KB |
Output is correct |
12 |
Correct |
1 ms |
384 KB |
Output is correct |
13 |
Correct |
1 ms |
384 KB |
Output is correct |
14 |
Correct |
1 ms |
384 KB |
Output is correct |
15 |
Correct |
1 ms |
384 KB |
Output is correct |
16 |
Correct |
1 ms |
384 KB |
Output is correct |
17 |
Correct |
1 ms |
384 KB |
Output is correct |
18 |
Correct |
1 ms |
384 KB |
Output is correct |
19 |
Correct |
1 ms |
384 KB |
Output is correct |
20 |
Correct |
0 ms |
384 KB |
Output is correct |
21 |
Incorrect |
1 ms |
384 KB |
Output isn't correct |
22 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
384 KB |
Output is correct |
2 |
Correct |
1 ms |
384 KB |
Output is correct |
3 |
Correct |
1 ms |
384 KB |
Output is correct |
4 |
Correct |
1 ms |
384 KB |
Output is correct |
5 |
Correct |
1 ms |
384 KB |
Output is correct |
6 |
Correct |
1 ms |
384 KB |
Output is correct |
7 |
Correct |
1 ms |
384 KB |
Output is correct |
8 |
Correct |
1 ms |
384 KB |
Output is correct |
9 |
Correct |
1 ms |
384 KB |
Output is correct |
10 |
Correct |
0 ms |
384 KB |
Output is correct |
11 |
Correct |
1 ms |
384 KB |
Output is correct |
12 |
Correct |
1 ms |
384 KB |
Output is correct |
13 |
Correct |
1 ms |
384 KB |
Output is correct |
14 |
Correct |
1 ms |
384 KB |
Output is correct |
15 |
Correct |
1 ms |
384 KB |
Output is correct |
16 |
Correct |
1 ms |
384 KB |
Output is correct |
17 |
Correct |
1 ms |
384 KB |
Output is correct |
18 |
Correct |
1 ms |
384 KB |
Output is correct |
19 |
Correct |
0 ms |
384 KB |
Output is correct |
20 |
Correct |
1 ms |
384 KB |
Output is correct |
21 |
Incorrect |
0 ms |
384 KB |
Output isn't correct |
22 |
Halted |
0 ms |
0 KB |
- |