#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=0;
for(int i:more){
int yi=get(i,n);
if(mulm*yi>mul*ym){
ym=yi;
mulm=mul;
}
mul=mul*x[i];
if(mul>mod){
break;
}
}*/
long long ans1=0,mul=mulx;
for(int i=n-1;i>=0;i--){
ans1=max(ans1,mul*get(i,n));
mul/=x[i];
}
return ans1%mod;//(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:76:16: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
return ans1%mod;//(1ll*((mulx*powm(mulm,mod-2))%mod)*ym)%mod;
~~~~^~~~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:82: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:100: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:102:27: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
mulx=(1ll*mulx*x[pos])%mod;
~~~~~~~~~~~~~~~~~^~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
248 KB |
Output is correct |
2 |
Correct |
2 ms |
496 KB |
Output is correct |
3 |
Correct |
2 ms |
512 KB |
Output is correct |
4 |
Correct |
3 ms |
512 KB |
Output is correct |
5 |
Correct |
2 ms |
524 KB |
Output is correct |
6 |
Correct |
2 ms |
524 KB |
Output is correct |
7 |
Correct |
2 ms |
528 KB |
Output is correct |
8 |
Correct |
3 ms |
528 KB |
Output is correct |
9 |
Correct |
3 ms |
572 KB |
Output is correct |
10 |
Correct |
3 ms |
700 KB |
Output is correct |
11 |
Correct |
2 ms |
700 KB |
Output is correct |
12 |
Correct |
3 ms |
700 KB |
Output is correct |
13 |
Correct |
3 ms |
700 KB |
Output is correct |
14 |
Correct |
2 ms |
700 KB |
Output is correct |
15 |
Correct |
3 ms |
700 KB |
Output is correct |
16 |
Correct |
3 ms |
700 KB |
Output is correct |
17 |
Correct |
2 ms |
700 KB |
Output is correct |
18 |
Correct |
3 ms |
700 KB |
Output is correct |
19 |
Correct |
3 ms |
700 KB |
Output is correct |
20 |
Correct |
2 ms |
700 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
700 KB |
Output is correct |
2 |
Correct |
2 ms |
700 KB |
Output is correct |
3 |
Correct |
2 ms |
700 KB |
Output is correct |
4 |
Correct |
3 ms |
700 KB |
Output is correct |
5 |
Correct |
3 ms |
700 KB |
Output is correct |
6 |
Correct |
2 ms |
700 KB |
Output is correct |
7 |
Correct |
3 ms |
700 KB |
Output is correct |
8 |
Correct |
3 ms |
700 KB |
Output is correct |
9 |
Correct |
3 ms |
700 KB |
Output is correct |
10 |
Correct |
2 ms |
700 KB |
Output is correct |
11 |
Correct |
2 ms |
700 KB |
Output is correct |
12 |
Correct |
2 ms |
756 KB |
Output is correct |
13 |
Correct |
2 ms |
756 KB |
Output is correct |
14 |
Correct |
2 ms |
756 KB |
Output is correct |
15 |
Correct |
2 ms |
756 KB |
Output is correct |
16 |
Correct |
3 ms |
756 KB |
Output is correct |
17 |
Correct |
3 ms |
756 KB |
Output is correct |
18 |
Correct |
2 ms |
756 KB |
Output is correct |
19 |
Correct |
3 ms |
756 KB |
Output is correct |
20 |
Correct |
2 ms |
756 KB |
Output is correct |
21 |
Correct |
2 ms |
756 KB |
Output is correct |
22 |
Incorrect |
2 ms |
756 KB |
Output isn't correct |
23 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1561 ms |
36136 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
36136 KB |
Output is correct |
2 |
Correct |
3 ms |
36136 KB |
Output is correct |
3 |
Correct |
2 ms |
36136 KB |
Output is correct |
4 |
Correct |
3 ms |
36136 KB |
Output is correct |
5 |
Correct |
3 ms |
36136 KB |
Output is correct |
6 |
Correct |
2 ms |
36136 KB |
Output is correct |
7 |
Correct |
2 ms |
36136 KB |
Output is correct |
8 |
Correct |
2 ms |
36136 KB |
Output is correct |
9 |
Correct |
3 ms |
36136 KB |
Output is correct |
10 |
Correct |
4 ms |
36136 KB |
Output is correct |
11 |
Correct |
3 ms |
36136 KB |
Output is correct |
12 |
Correct |
2 ms |
36136 KB |
Output is correct |
13 |
Correct |
2 ms |
36136 KB |
Output is correct |
14 |
Correct |
2 ms |
36136 KB |
Output is correct |
15 |
Correct |
2 ms |
36136 KB |
Output is correct |
16 |
Correct |
3 ms |
36136 KB |
Output is correct |
17 |
Correct |
3 ms |
36136 KB |
Output is correct |
18 |
Correct |
3 ms |
36136 KB |
Output is correct |
19 |
Correct |
3 ms |
36136 KB |
Output is correct |
20 |
Correct |
2 ms |
36136 KB |
Output is correct |
21 |
Correct |
4 ms |
36136 KB |
Output is correct |
22 |
Incorrect |
3 ms |
36136 KB |
Output isn't correct |
23 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
36136 KB |
Output is correct |
2 |
Correct |
2 ms |
36136 KB |
Output is correct |
3 |
Correct |
3 ms |
36136 KB |
Output is correct |
4 |
Correct |
2 ms |
36136 KB |
Output is correct |
5 |
Correct |
2 ms |
36136 KB |
Output is correct |
6 |
Correct |
2 ms |
36136 KB |
Output is correct |
7 |
Correct |
2 ms |
36136 KB |
Output is correct |
8 |
Correct |
3 ms |
36136 KB |
Output is correct |
9 |
Correct |
3 ms |
36136 KB |
Output is correct |
10 |
Correct |
3 ms |
36136 KB |
Output is correct |
11 |
Correct |
3 ms |
36136 KB |
Output is correct |
12 |
Correct |
3 ms |
36136 KB |
Output is correct |
13 |
Correct |
3 ms |
36136 KB |
Output is correct |
14 |
Correct |
2 ms |
36136 KB |
Output is correct |
15 |
Correct |
3 ms |
36136 KB |
Output is correct |
16 |
Correct |
2 ms |
36136 KB |
Output is correct |
17 |
Correct |
3 ms |
36136 KB |
Output is correct |
18 |
Correct |
3 ms |
36136 KB |
Output is correct |
19 |
Correct |
3 ms |
36136 KB |
Output is correct |
20 |
Correct |
2 ms |
36136 KB |
Output is correct |
21 |
Correct |
3 ms |
36136 KB |
Output is correct |
22 |
Incorrect |
2 ms |
36136 KB |
Output isn't correct |
23 |
Halted |
0 ms |
0 KB |
- |