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>
#define mod 1000000007
using namespace std;
struct segS
{
long long cnt=0, val=0;
segS operator+(segS b)
{
segS ans;
ans.val = max( val, (cnt * b.val)%mod );
ans.cnt = (cnt * b.cnt) % mod;
return ans;
}
};
int n;
long long x[100005], y[100005];
vector<segS> seg;
void upd(int i, int st, int dr, int p)
{
if(st == dr)
{
seg[p].cnt = x[i];
seg[p].val = (x[i] * y[i]) % mod;
}
}
int updateX(int pos, int val)
{
x[pos]=val;
upd(pos, 0, n-1, 1);
return (int)seg[1].val;
}
int updateY(int pos, int val)
{
y[pos]=val;
upd(pos, 0, n-1, 1);
return (int)seg[1].val;
}
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];
}
seg.resize(4*n+4);
for(int i=0;i<n;i++)
upd(i, 0, n-1, 1);
return (int)seg[1].val;
}
# | 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... |