#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, 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));
}
int merge(int l, int r){
if(l == 0){
return r;
}
if(r == 0){
return l;
}
return 1LL * get_x_prod(1, 1, n, l + 1, r) * 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);
}
st[id] = merge(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){
st[id] = merge(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]);
}
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:22: note: shadowed declaration is here
16 | int n, 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:53:48: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
53 | update_bit(l, 1LL * power(x[l], mod - 2) * X % mod);
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp:66:16: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
66 | 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:97:41: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
97 | return 1LL * get_bit(st[1]) * y[st[1]] % mod;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int updateX(int, int)':
horses.cpp:101:41: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
101 | return 1LL * get_bit(st[1]) * y[st[1]] % mod;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
horses.cpp: In function 'int updateY(int, int)':
horses.cpp:105:41: warning: conversion from 'long long int' to 'int' may change value [-Wconversion]
105 | return 1LL * get_bit(st[1]) * y[st[1]] % mod;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
14936 KB |
Output is correct |
2 |
Correct |
3 ms |
14940 KB |
Output is correct |
3 |
Correct |
4 ms |
14940 KB |
Output is correct |
4 |
Correct |
3 ms |
14940 KB |
Output is correct |
5 |
Correct |
3 ms |
14940 KB |
Output is correct |
6 |
Correct |
3 ms |
14940 KB |
Output is correct |
7 |
Correct |
3 ms |
14940 KB |
Output is correct |
8 |
Correct |
3 ms |
14940 KB |
Output is correct |
9 |
Correct |
4 ms |
14980 KB |
Output is correct |
10 |
Correct |
3 ms |
14940 KB |
Output is correct |
11 |
Correct |
3 ms |
14940 KB |
Output is correct |
12 |
Correct |
3 ms |
14940 KB |
Output is correct |
13 |
Correct |
3 ms |
14940 KB |
Output is correct |
14 |
Correct |
3 ms |
14940 KB |
Output is correct |
15 |
Correct |
3 ms |
14940 KB |
Output is correct |
16 |
Correct |
3 ms |
14940 KB |
Output is correct |
17 |
Correct |
3 ms |
14940 KB |
Output is correct |
18 |
Correct |
3 ms |
14940 KB |
Output is correct |
19 |
Correct |
3 ms |
14940 KB |
Output is correct |
20 |
Correct |
3 ms |
14940 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
14940 KB |
Output is correct |
2 |
Correct |
3 ms |
14940 KB |
Output is correct |
3 |
Correct |
3 ms |
14936 KB |
Output is correct |
4 |
Correct |
3 ms |
14940 KB |
Output is correct |
5 |
Correct |
3 ms |
14940 KB |
Output is correct |
6 |
Correct |
3 ms |
14936 KB |
Output is correct |
7 |
Correct |
3 ms |
14940 KB |
Output is correct |
8 |
Correct |
3 ms |
14940 KB |
Output is correct |
9 |
Correct |
3 ms |
14936 KB |
Output is correct |
10 |
Correct |
3 ms |
14940 KB |
Output is correct |
11 |
Correct |
3 ms |
14940 KB |
Output is correct |
12 |
Correct |
3 ms |
14940 KB |
Output is correct |
13 |
Correct |
3 ms |
14940 KB |
Output is correct |
14 |
Correct |
3 ms |
14940 KB |
Output is correct |
15 |
Correct |
3 ms |
14940 KB |
Output is correct |
16 |
Correct |
3 ms |
14940 KB |
Output is correct |
17 |
Correct |
3 ms |
14940 KB |
Output is correct |
18 |
Correct |
3 ms |
14940 KB |
Output is correct |
19 |
Correct |
3 ms |
14940 KB |
Output is correct |
20 |
Correct |
3 ms |
14940 KB |
Output is correct |
21 |
Correct |
3 ms |
14940 KB |
Output is correct |
22 |
Correct |
3 ms |
14940 KB |
Output is correct |
23 |
Correct |
5 ms |
14940 KB |
Output is correct |
24 |
Correct |
6 ms |
14936 KB |
Output is correct |
25 |
Correct |
4 ms |
14940 KB |
Output is correct |
26 |
Correct |
4 ms |
14980 KB |
Output is correct |
27 |
Correct |
6 ms |
14940 KB |
Output is correct |
28 |
Correct |
5 ms |
14940 KB |
Output is correct |
29 |
Correct |
4 ms |
14940 KB |
Output is correct |
30 |
Correct |
4 ms |
14940 KB |
Output is correct |
31 |
Correct |
5 ms |
14940 KB |
Output is correct |
32 |
Correct |
5 ms |
14940 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
750 ms |
23768 KB |
Output is correct |
2 |
Correct |
833 ms |
23780 KB |
Output is correct |
3 |
Correct |
882 ms |
23756 KB |
Output is correct |
4 |
Correct |
977 ms |
24164 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
14936 KB |
Output is correct |
2 |
Correct |
3 ms |
14940 KB |
Output is correct |
3 |
Correct |
3 ms |
14940 KB |
Output is correct |
4 |
Correct |
3 ms |
14936 KB |
Output is correct |
5 |
Correct |
3 ms |
14968 KB |
Output is correct |
6 |
Correct |
3 ms |
14940 KB |
Output is correct |
7 |
Correct |
3 ms |
14940 KB |
Output is correct |
8 |
Correct |
3 ms |
14940 KB |
Output is correct |
9 |
Correct |
3 ms |
14940 KB |
Output is correct |
10 |
Correct |
3 ms |
14936 KB |
Output is correct |
11 |
Correct |
3 ms |
14940 KB |
Output is correct |
12 |
Correct |
3 ms |
14940 KB |
Output is correct |
13 |
Correct |
3 ms |
14940 KB |
Output is correct |
14 |
Correct |
3 ms |
14936 KB |
Output is correct |
15 |
Correct |
3 ms |
14940 KB |
Output is correct |
16 |
Correct |
3 ms |
14940 KB |
Output is correct |
17 |
Correct |
3 ms |
14940 KB |
Output is correct |
18 |
Correct |
3 ms |
14940 KB |
Output is correct |
19 |
Correct |
3 ms |
14940 KB |
Output is correct |
20 |
Correct |
3 ms |
14936 KB |
Output is correct |
21 |
Correct |
3 ms |
14940 KB |
Output is correct |
22 |
Correct |
3 ms |
14940 KB |
Output is correct |
23 |
Correct |
5 ms |
14940 KB |
Output is correct |
24 |
Correct |
5 ms |
14940 KB |
Output is correct |
25 |
Correct |
4 ms |
14940 KB |
Output is correct |
26 |
Correct |
4 ms |
14936 KB |
Output is correct |
27 |
Correct |
6 ms |
14940 KB |
Output is correct |
28 |
Correct |
5 ms |
14940 KB |
Output is correct |
29 |
Correct |
4 ms |
14936 KB |
Output is correct |
30 |
Correct |
4 ms |
14940 KB |
Output is correct |
31 |
Correct |
4 ms |
14940 KB |
Output is correct |
32 |
Correct |
4 ms |
14940 KB |
Output is correct |
33 |
Correct |
1157 ms |
23008 KB |
Output is correct |
34 |
Correct |
1161 ms |
23004 KB |
Output is correct |
35 |
Correct |
575 ms |
22988 KB |
Output is correct |
36 |
Correct |
587 ms |
23152 KB |
Output is correct |
37 |
Correct |
910 ms |
22996 KB |
Output is correct |
38 |
Correct |
724 ms |
23124 KB |
Output is correct |
39 |
Correct |
915 ms |
22996 KB |
Output is correct |
40 |
Correct |
575 ms |
22996 KB |
Output is correct |
41 |
Correct |
894 ms |
22996 KB |
Output is correct |
42 |
Correct |
998 ms |
23000 KB |
Output is correct |
43 |
Correct |
558 ms |
22996 KB |
Output is correct |
44 |
Correct |
548 ms |
22992 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
14936 KB |
Output is correct |
2 |
Correct |
3 ms |
14940 KB |
Output is correct |
3 |
Correct |
3 ms |
14940 KB |
Output is correct |
4 |
Correct |
3 ms |
14940 KB |
Output is correct |
5 |
Correct |
3 ms |
14936 KB |
Output is correct |
6 |
Correct |
3 ms |
14940 KB |
Output is correct |
7 |
Correct |
3 ms |
14960 KB |
Output is correct |
8 |
Correct |
3 ms |
14940 KB |
Output is correct |
9 |
Correct |
3 ms |
14940 KB |
Output is correct |
10 |
Correct |
3 ms |
14960 KB |
Output is correct |
11 |
Correct |
3 ms |
14940 KB |
Output is correct |
12 |
Correct |
3 ms |
14940 KB |
Output is correct |
13 |
Correct |
3 ms |
14940 KB |
Output is correct |
14 |
Correct |
3 ms |
14940 KB |
Output is correct |
15 |
Correct |
3 ms |
14940 KB |
Output is correct |
16 |
Correct |
3 ms |
14940 KB |
Output is correct |
17 |
Correct |
3 ms |
14940 KB |
Output is correct |
18 |
Correct |
3 ms |
14940 KB |
Output is correct |
19 |
Correct |
4 ms |
14940 KB |
Output is correct |
20 |
Correct |
3 ms |
14940 KB |
Output is correct |
21 |
Correct |
3 ms |
14940 KB |
Output is correct |
22 |
Correct |
3 ms |
14940 KB |
Output is correct |
23 |
Correct |
5 ms |
14940 KB |
Output is correct |
24 |
Correct |
5 ms |
14936 KB |
Output is correct |
25 |
Correct |
6 ms |
14940 KB |
Output is correct |
26 |
Correct |
4 ms |
14936 KB |
Output is correct |
27 |
Correct |
5 ms |
14940 KB |
Output is correct |
28 |
Correct |
5 ms |
14940 KB |
Output is correct |
29 |
Correct |
4 ms |
14940 KB |
Output is correct |
30 |
Correct |
4 ms |
14940 KB |
Output is correct |
31 |
Correct |
5 ms |
14964 KB |
Output is correct |
32 |
Correct |
6 ms |
14936 KB |
Output is correct |
33 |
Correct |
803 ms |
24012 KB |
Output is correct |
34 |
Correct |
791 ms |
23940 KB |
Output is correct |
35 |
Correct |
873 ms |
23888 KB |
Output is correct |
36 |
Correct |
1020 ms |
23760 KB |
Output is correct |
37 |
Correct |
1167 ms |
22996 KB |
Output is correct |
38 |
Correct |
1165 ms |
23012 KB |
Output is correct |
39 |
Correct |
577 ms |
22988 KB |
Output is correct |
40 |
Correct |
573 ms |
22996 KB |
Output is correct |
41 |
Correct |
903 ms |
23172 KB |
Output is correct |
42 |
Correct |
686 ms |
23124 KB |
Output is correct |
43 |
Correct |
883 ms |
22980 KB |
Output is correct |
44 |
Correct |
568 ms |
23176 KB |
Output is correct |
45 |
Correct |
911 ms |
23000 KB |
Output is correct |
46 |
Correct |
955 ms |
22988 KB |
Output is correct |
47 |
Correct |
552 ms |
23124 KB |
Output is correct |
48 |
Correct |
546 ms |
22996 KB |
Output is correct |
49 |
Execution timed out |
1518 ms |
23812 KB |
Time limit exceeded |
50 |
Halted |
0 ms |
0 KB |
- |