#include "horses.h"
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mod = 1e9 + 7;
const int lim = 5e5 + 5;
int power(int a, int b){
int ans = 1;
for(; b > 0; b >>= 1, a = 1LL * a * a % mod){
if(b & 1){
ans = 1LL * ans * a % mod;
}
}
return ans;
}
int n, pl[lim << 2], pr[lim << 2], temp[lim << 2], st[lim << 2], x[lim], x_st[lim << 2], y[lim], bit[lim];
int get_bit(int p){
int ans = 1;
for(; p > 0; p -= p & -p){
ans = 1LL * ans * bit[p] % mod;
}
return ans;
}
void update_bit(int p, int x){
for(; p <= n; p += p & -p){
bit[p] = 1LL * bit[p] * x % mod;
}
}
int get_x_prod(int id, int l, int r, int u, int v){
if(l > v || r < u){
return 1;
}
if(u <= l && v >= r){
return x_st[id];
}
int m = (l + r) >> 1, left = get_x_prod(id << 1, l, m, u, v);
if(left == mod){
return mod;
}
return min(ll(mod), 1LL * left * get_x_prod(id << 1 | 1, m + 1, r, u, v));
}
void merge(int id, int l, int r){
if(l == 0 || r == 0){
st[id] = (l == 0 ? r : l);
return;
}
if(pl[id] != l || pr[id] != r){
temp[id] = get_x_prod(1, 1, n, (pl[id] = l) + 1, pr[id] = r);
}
st[id] = (1LL * temp[id] * y[r] < ll(y[l]) ? l : r);
}
void update_X(int id, int l, int r, int p, int X){
if(l == r){
update_bit(l, 1LL * power(x[l], mod - 2) * X % mod);
x[st[id] = l] = X;
x_st[id] = X;
return;
}
int m = (l + r) >> 1;
if(m < p){
update_X(id << 1 | 1, m + 1, r, p, X);
}
else{
update_X(id << 1, l, m, p, X);
}
merge(id, st[id << 1], st[id << 1 | 1]);
x_st[id] = min(ll(mod), 1LL * x_st[id << 1] * x_st[id << 1 | 1]);
}
void update_Y(int p, int Y){
y[p] = Y;
int id = 1, l = 1, r = n;
while(l < r){
int m = (l + r) >> 1;
id <<= 1;
if(m < p){
l = m + 1;
id |= 1;
}
else{
r = m;
}
}
while((id >>= 1) > 0){
merge(id, st[id << 1], st[id << 1 | 1]);
}
}
int init(int N, int X[], int Y[]){
n = N;
fill(bit, bit + lim, 1);
for(int i = 1; i <= n; i++){
y[i] = Y[i - 1];
update_bit(i, x[i] = X[i - 1]);
}
memset(temp, -1, sizeof(temp));
fill(x_st, x_st + (lim << 2), 1);
for(int i = 1; i <= n; i++){
update_X(1, 1, n, i, X[i - 1]);
}
return 1LL * get_bit(st[1]) * y[st[1]] % mod;
}
int updateX(int pos, int val){
update_X(1, 1, n, pos + 1, val);
return 1LL * get_bit(st[1]) * y[st[1]] % mod;
}
int updateY(int pos, int val){
update_Y(pos + 1, val);
return 1LL * get_bit(st[1]) * y[st[1]] % mod;
}
Compilation message
horses.cpp: In function 'int power(int, int)':
horses.cpp:9:40: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
9 | for(; b > 0; b >>= 1, a = 1LL * a * a % mod){
| ~~~~~~~~~~~~^~~~~
horses.cpp:11:24: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
11 | ans = 1LL * ans * a % mod;
| ~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int get_bit(int)':
horses.cpp:20:28: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
20 | ans = 1LL * ans * bit[p] % mod;
| ~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'void update_bit(int, int)':
horses.cpp:24:28: warning: declaration of 'x' shadows a global declaration [-Wshadow]
24 | void update_bit(int p, int x){
| ~~~~^
horses.cpp:16:66: note: shadowed declaration is here
16 | int n, pl[lim << 2], pr[lim << 2], temp[lim << 2], st[lim << 2], x[lim], x_st[lim << 2], y[lim], bit[lim];
| ^
horses.cpp:26:29: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
26 | bit[p] = 1LL * bit[p] * x % mod;
| ~~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int get_x_prod(int, int, int, int, int)':
horses.cpp:40:12: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
40 | return min(ll(mod), 1LL * left * get_x_prod(id << 1 | 1, m + 1, r, u, v));
| ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
horses.cpp: In function 'void update_X(int, int, int, int, int)':
horses.cpp:54:48: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
54 | update_bit(l, 1LL * power(x[l], mod - 2) * X % mod);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp:67:16: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
67 | x_st[id] = min(ll(mod), 1LL * x_st[id << 1] * x_st[id << 1 | 1]);
| ~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
horses.cpp: In function 'int init(int, int*, int*)':
horses.cpp:99:41: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
99 | return 1LL * get_bit(st[1]) * y[st[1]] % mod;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:103:41: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
103 | return 1LL * get_bit(st[1]) * y[st[1]] % mod;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:107:41: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
107 | return 1LL * get_bit(st[1]) * y[st[1]] % mod;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
25180 KB |
Output is correct |
2 |
Correct |
5 ms |
25180 KB |
Output is correct |
3 |
Correct |
4 ms |
25180 KB |
Output is correct |
4 |
Correct |
5 ms |
25180 KB |
Output is correct |
5 |
Correct |
4 ms |
25180 KB |
Output is correct |
6 |
Correct |
4 ms |
25180 KB |
Output is correct |
7 |
Correct |
4 ms |
25180 KB |
Output is correct |
8 |
Correct |
4 ms |
25180 KB |
Output is correct |
9 |
Correct |
4 ms |
25232 KB |
Output is correct |
10 |
Correct |
4 ms |
25180 KB |
Output is correct |
11 |
Correct |
4 ms |
25236 KB |
Output is correct |
12 |
Correct |
4 ms |
25432 KB |
Output is correct |
13 |
Correct |
4 ms |
25180 KB |
Output is correct |
14 |
Correct |
4 ms |
25180 KB |
Output is correct |
15 |
Correct |
5 ms |
25208 KB |
Output is correct |
16 |
Correct |
4 ms |
25180 KB |
Output is correct |
17 |
Correct |
4 ms |
25180 KB |
Output is correct |
18 |
Correct |
4 ms |
25180 KB |
Output is correct |
19 |
Correct |
5 ms |
25180 KB |
Output is correct |
20 |
Correct |
4 ms |
25252 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
25176 KB |
Output is correct |
2 |
Correct |
4 ms |
25176 KB |
Output is correct |
3 |
Correct |
4 ms |
25180 KB |
Output is correct |
4 |
Correct |
4 ms |
25176 KB |
Output is correct |
5 |
Correct |
4 ms |
25176 KB |
Output is correct |
6 |
Correct |
4 ms |
25176 KB |
Output is correct |
7 |
Correct |
5 ms |
25224 KB |
Output is correct |
8 |
Correct |
4 ms |
25180 KB |
Output is correct |
9 |
Correct |
4 ms |
25180 KB |
Output is correct |
10 |
Correct |
4 ms |
25220 KB |
Output is correct |
11 |
Correct |
4 ms |
25176 KB |
Output is correct |
12 |
Correct |
4 ms |
25180 KB |
Output is correct |
13 |
Correct |
4 ms |
25180 KB |
Output is correct |
14 |
Correct |
4 ms |
25200 KB |
Output is correct |
15 |
Correct |
4 ms |
25180 KB |
Output is correct |
16 |
Correct |
4 ms |
25180 KB |
Output is correct |
17 |
Correct |
4 ms |
25180 KB |
Output is correct |
18 |
Correct |
4 ms |
25180 KB |
Output is correct |
19 |
Correct |
4 ms |
25180 KB |
Output is correct |
20 |
Correct |
4 ms |
25180 KB |
Output is correct |
21 |
Incorrect |
4 ms |
25180 KB |
Output isn't correct |
22 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
640 ms |
38156 KB |
Output is correct |
2 |
Correct |
647 ms |
38704 KB |
Output is correct |
3 |
Incorrect |
728 ms |
38704 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
25176 KB |
Output is correct |
2 |
Correct |
4 ms |
25180 KB |
Output is correct |
3 |
Correct |
4 ms |
25180 KB |
Output is correct |
4 |
Correct |
4 ms |
25180 KB |
Output is correct |
5 |
Correct |
4 ms |
25208 KB |
Output is correct |
6 |
Correct |
4 ms |
25180 KB |
Output is correct |
7 |
Correct |
4 ms |
25180 KB |
Output is correct |
8 |
Correct |
4 ms |
25180 KB |
Output is correct |
9 |
Correct |
4 ms |
25180 KB |
Output is correct |
10 |
Correct |
5 ms |
25180 KB |
Output is correct |
11 |
Correct |
4 ms |
25180 KB |
Output is correct |
12 |
Correct |
4 ms |
25056 KB |
Output is correct |
13 |
Correct |
4 ms |
25180 KB |
Output is correct |
14 |
Correct |
4 ms |
25180 KB |
Output is correct |
15 |
Correct |
5 ms |
25180 KB |
Output is correct |
16 |
Correct |
4 ms |
25180 KB |
Output is correct |
17 |
Correct |
4 ms |
25180 KB |
Output is correct |
18 |
Correct |
4 ms |
25176 KB |
Output is correct |
19 |
Correct |
4 ms |
25180 KB |
Output is correct |
20 |
Correct |
4 ms |
25180 KB |
Output is correct |
21 |
Incorrect |
4 ms |
25180 KB |
Output isn't correct |
22 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
25180 KB |
Output is correct |
2 |
Correct |
4 ms |
25228 KB |
Output is correct |
3 |
Correct |
5 ms |
25240 KB |
Output is correct |
4 |
Correct |
5 ms |
25332 KB |
Output is correct |
5 |
Correct |
5 ms |
25180 KB |
Output is correct |
6 |
Correct |
4 ms |
25180 KB |
Output is correct |
7 |
Correct |
4 ms |
25200 KB |
Output is correct |
8 |
Correct |
4 ms |
25180 KB |
Output is correct |
9 |
Correct |
4 ms |
25180 KB |
Output is correct |
10 |
Correct |
4 ms |
25180 KB |
Output is correct |
11 |
Correct |
4 ms |
25180 KB |
Output is correct |
12 |
Correct |
4 ms |
25180 KB |
Output is correct |
13 |
Correct |
4 ms |
25180 KB |
Output is correct |
14 |
Correct |
4 ms |
25180 KB |
Output is correct |
15 |
Correct |
4 ms |
25180 KB |
Output is correct |
16 |
Correct |
4 ms |
25180 KB |
Output is correct |
17 |
Correct |
4 ms |
25180 KB |
Output is correct |
18 |
Correct |
4 ms |
25180 KB |
Output is correct |
19 |
Correct |
6 ms |
25180 KB |
Output is correct |
20 |
Correct |
4 ms |
25180 KB |
Output is correct |
21 |
Incorrect |
4 ms |
25180 KB |
Output isn't correct |
22 |
Halted |
0 ms |
0 KB |
- |