#include <bits/stdc++.h>
#include "horses.h"
using namespace std;
const int MN=5e5+100,mod=1e9+7;
int n,x[MN],y[MN],seg[4*MN],mulx=1;
set<int,greater<int> > more;
int powm(int x1,int y1){
if(y1==0){
return 1;
}
int ans=powm(x1,y1/2);
ans=(1ll*ans*ans)%mod;
if(y1&1){
ans=(1ll*ans*x1)%mod;
}
return ans;
}
void build(int v=1,int s=0,int e=n){
if(e-s<2){
seg[v]=y[s];
return ;
}
int mid=(s+e)/2;
build(2*v,s,mid);
build(2*v+1,mid,e);
seg[v]=max(seg[2*v],seg[2*v+1]);
}
void st(int p,int val,int v=1,int s=0,int e=n){
if(e-s<2){
seg[v]=val;
return;
}
int mid=(s+e)/2;
if(p<mid){
st(p,val,2*v,s,mid);
}
else{
st(p,val,2*v+1,mid,e);
}
seg[v]=max(seg[2*v],seg[2*v+1]);
}
int get(int l,int r,int v=1,int s=0,int e=n){
/*if(l<=s && e<=r){
return seg[v];
}
if(l>=e || s>=r){
return 0;
}
int mid=(s+e)/2;
return max(get(l,r,2*v,s,mid),get(l,r,2*v+1,mid,e));*/
int mx=0;
for(int i=l;i<r;i++){
mx=max(mx,y[i]);
}
return mx;
}
int ans(){
long long mul=1,mulm=1,ym=y[n-1];
for(int i:more){
int yi=get(i,n);
if(mulm*yi>mul*ym){
ym=yi;
mulm=mul;
}
mul=mul*x[i];
if(mul>2e9){
break;
}
}
return (1ll*((mulx*powm(mulm,mod-2))%mod)*ym)%mod;
}
int init(int N, int X[], int Y[]) {
n=N;
for(int i=0;i<n;i++){
x[i]=X[i];
mulx=(1ll*mulx*x[i])%mod;
y[i]=Y[i];
if(x[i]>1){
more.insert(i);
}
}
more.insert(0);
build();
return ans();
}
int updateX(int pos, int val) {
if(pos>0 && x[pos]>1 && val<2){
more.erase(pos);
}
if(pos>0 && x[pos]<2 && val>1){
more.insert(pos);
}
mulx=(1ll*mulx*powm(x[pos],mod-2))%mod;
x[pos]=val;
mulx=(1ll*mulx*x[pos])%mod;
return ans();
}
int updateY(int pos, int val) {
y[pos]=val;
st(pos,val);
return ans();
}
Compilation message
horses.cpp: In function 'int powm(int, int)':
horses.cpp:13:22: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
ans=(1ll*ans*ans)%mod;
~~~~~~~~~~~~~^~~~
horses.cpp:15:25: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
ans=(1ll*ans*x1)%mod;
~~~~~~~~~~~~^~~~
horses.cpp: In function 'int get(int, int, int, int, int)':
horses.cpp:43:27: warning: unused parameter 'v' [-Wunused-parameter]
int get(int l,int r,int v=1,int s=0,int e=n){
^
horses.cpp:43:35: warning: unused parameter 's' [-Wunused-parameter]
int get(int l,int r,int v=1,int s=0,int e=n){
^
horses.cpp:43:43: warning: unused parameter 'e' [-Wunused-parameter]
int get(int l,int r,int v=1,int s=0,int e=n){
^
horses.cpp: In function 'int ans()':
horses.cpp:67:16: warning: conversion to 'double' from 'long long int' may alter its value [-Wconversion]
if(mul>2e9){
^~~
horses.cpp:71:39: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
return (1ll*((mulx*powm(mulm,mod-2))%mod)*ym)%mod;
^
horses.cpp:71:50: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
return (1ll*((mulx*powm(mulm,mod-2))%mod)*ym)%mod;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:77:29: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
mulx=(1ll*mulx*x[i])%mod;
~~~~~~~~~~~~~~~^~~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:95:39: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
mulx=(1ll*mulx*powm(x[pos],mod-2))%mod;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
horses.cpp:97:27: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
mulx=(1ll*mulx*x[pos])%mod;
~~~~~~~~~~~~~~~~~^~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
248 KB |
Output is correct |
2 |
Correct |
2 ms |
356 KB |
Output is correct |
3 |
Correct |
3 ms |
408 KB |
Output is correct |
4 |
Correct |
3 ms |
488 KB |
Output is correct |
5 |
Correct |
2 ms |
488 KB |
Output is correct |
6 |
Correct |
2 ms |
488 KB |
Output is correct |
7 |
Correct |
2 ms |
616 KB |
Output is correct |
8 |
Correct |
3 ms |
616 KB |
Output is correct |
9 |
Correct |
3 ms |
616 KB |
Output is correct |
10 |
Correct |
2 ms |
616 KB |
Output is correct |
11 |
Correct |
3 ms |
616 KB |
Output is correct |
12 |
Correct |
3 ms |
616 KB |
Output is correct |
13 |
Incorrect |
2 ms |
616 KB |
Output isn't correct |
14 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
616 KB |
Output is correct |
2 |
Correct |
2 ms |
616 KB |
Output is correct |
3 |
Correct |
2 ms |
636 KB |
Output is correct |
4 |
Correct |
3 ms |
640 KB |
Output is correct |
5 |
Correct |
2 ms |
640 KB |
Output is correct |
6 |
Correct |
3 ms |
640 KB |
Output is correct |
7 |
Correct |
3 ms |
640 KB |
Output is correct |
8 |
Correct |
2 ms |
640 KB |
Output is correct |
9 |
Correct |
2 ms |
640 KB |
Output is correct |
10 |
Correct |
2 ms |
640 KB |
Output is correct |
11 |
Correct |
3 ms |
640 KB |
Output is correct |
12 |
Correct |
2 ms |
640 KB |
Output is correct |
13 |
Incorrect |
3 ms |
640 KB |
Output isn't correct |
14 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
327 ms |
37016 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
37016 KB |
Output is correct |
2 |
Correct |
2 ms |
37016 KB |
Output is correct |
3 |
Correct |
2 ms |
37016 KB |
Output is correct |
4 |
Correct |
2 ms |
37016 KB |
Output is correct |
5 |
Correct |
2 ms |
37016 KB |
Output is correct |
6 |
Correct |
2 ms |
37016 KB |
Output is correct |
7 |
Correct |
2 ms |
37016 KB |
Output is correct |
8 |
Correct |
3 ms |
37016 KB |
Output is correct |
9 |
Correct |
3 ms |
37016 KB |
Output is correct |
10 |
Correct |
3 ms |
37016 KB |
Output is correct |
11 |
Correct |
2 ms |
37016 KB |
Output is correct |
12 |
Correct |
2 ms |
37016 KB |
Output is correct |
13 |
Incorrect |
2 ms |
37016 KB |
Output isn't correct |
14 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
37016 KB |
Output is correct |
2 |
Correct |
2 ms |
37016 KB |
Output is correct |
3 |
Correct |
3 ms |
37016 KB |
Output is correct |
4 |
Correct |
3 ms |
37016 KB |
Output is correct |
5 |
Correct |
3 ms |
37016 KB |
Output is correct |
6 |
Correct |
3 ms |
37016 KB |
Output is correct |
7 |
Correct |
3 ms |
37016 KB |
Output is correct |
8 |
Correct |
3 ms |
37016 KB |
Output is correct |
9 |
Correct |
2 ms |
37016 KB |
Output is correct |
10 |
Correct |
2 ms |
37016 KB |
Output is correct |
11 |
Correct |
2 ms |
37016 KB |
Output is correct |
12 |
Correct |
3 ms |
37016 KB |
Output is correct |
13 |
Incorrect |
2 ms |
37016 KB |
Output isn't correct |
14 |
Halted |
0 ms |
0 KB |
- |