This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#pragma GCC optimize("-O3")
#include<bits/stdc++.h>
#include "horses.h"
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
#define ll long long
#define ld long double
#define vl vector<ll>
#define vi vector<int>
#define pii pair<int, int>
#define pll pair<ll, ll>
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
#define pb push_back
#define p_b pop_back
#define f first
#define s second
using namespace std;
using namespace __gnu_pbds;
typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
const int mod = 1e9+7, sz = 5e5+5;
const ll inf = 2e9;
int x[sz], y[sz], n;
pii segtree[4*sz];
set<pii>st;
int m(ll x, int y)
{
return ((x % mod) * y) % mod;
}
void build(int v, int l, int r)
{
if(l == r)
{
segtree[v].f = x[l];
segtree[v].s = y[l];
}
else
{
int mid = (l + r) / 2;
build(2*v, l, mid);
build(2*v+1, mid+1, r);
segtree[v].f = m(segtree[2*v].f, segtree[2*v+1].f);
segtree[v].s = max(segtree[2*v].s, segtree[2*v+1].s);
}
}
void update(int v, int l, int r, int type, int pos, int val)
{
if(l == r)
{
if(type == 1)
segtree[v].f = val;
else
segtree[v].s = val;
}
else
{
int mid = (l + r) / 2;
if(pos <= mid)
update(2*v, l, mid, type, pos, val);
else
update(2*v+1, mid+1, r, type, pos, val);
segtree[v].f = m(segtree[2*v].f, segtree[2*v+1].f);
segtree[v].s = max(segtree[2*v].s, segtree[2*v+1].s);
}
}
pii findans(int v, int l, int r, int tl, int tr)
{
if(tl > tr)
return {1, INT_MIN};
if(l == tl && r == tr)
return segtree[v];
else
{
int mid = (l + r) / 2;
pii lans, rans, ans;
lans = findans(2*v, l, mid, tl, min(mid, tr));
rans = findans(2*v+1, mid+1, r, max(mid+1, tl), tr);
ans.f = m(lans.f, rans.f);
ans.s = max(lans.s, rans.s);
return ans;
}
}
int ans()
{
ll res = 1;
int lst = n + 1;
for(auto u : st)
{
res = max(res, (ll)(findans(1, 1, n, -u.f, lst-1).s));
res *= u.s;
if(res >= inf)
return m(res, findans(1, 1, n, 1, -u.f-1).f);
lst = -u.f;
}
return res % mod;
}
int init(int N, int X[], int Y[]) {
n = N;
for(int i = 1; i <= N; i++)
{
x[i] = X[i-1];
y[i] = Y[i-1];
if(x[i] >= 2 || i == 1)
st.insert({-i, x[i]});
}
build(1, 1, N);
return ans();
}
int updateX(int pos, int val) {
pos++;
update(1, 1, n, 1, pos, val);
if(x[pos] >= 2 || pos == 1)
{
if(st.find({-pos, x[pos]}) != st.end())
st.erase({-pos, x[pos]});
}
x[pos] = val;
if(x[pos] >= 2 || pos == 1)
st.insert({-pos, x[pos]});
return ans();
}
int updateY(int pos, int val) {
update(1, 1, n, 2, pos+1, val);
return ans();
}
Compilation message (stderr)
horses.cpp: In function 'int m(long long int, int)':
horses.cpp:27:17: warning: declaration of 'y' shadows a global declaration [-Wshadow]
27 | int m(ll x, int y)
| ~~~~^
horses.cpp:24:12: note: shadowed declaration is here
24 | int x[sz], y[sz], n;
| ^
horses.cpp:27:10: warning: declaration of 'x' shadows a global declaration [-Wshadow]
27 | int m(ll x, int y)
| ^
horses.cpp:24:5: note: shadowed declaration is here
24 | int x[sz], y[sz], n;
| ^
horses.cpp:29:28: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
29 | return ((x % mod) * y) % mod;
| ~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int ans()':
horses.cpp:96:16: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
96 | return res % mod;
| ~~~~^~~~~
# | 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... |