이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
size_t n;
int X[1 << 19], Y[1 << 19];
int compute()
{
int k = 1, r = 0;
for(size_t i = 0; i < n; i++)
k *= X[i], r = max(r, k*Y[i]);
return r;
}
int init(int _n, int x[], int y[])
{
n = _n;
copy(x, x + n, X);
copy(y, y + n, Y);
return compute();
}
int updateX(int pos, int val)
{
X[pos] = val;
return compute();
}
int updateY(int pos, int val)
{
Y[pos] = val;
return compute();
}
# | 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... |