-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathD.cpp
More file actions
316 lines (228 loc) · 6.98 KB
/
Copy pathD.cpp
File metadata and controls
316 lines (228 loc) · 6.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/*
. . , ,
|` \/ \/ \,',
; ` \/\,.
: ` \,/
| /
; :
: ;
| ,---. /
: ,' `,-._ \
; ( o \ `'
_: . ,' o ;
/,.` `.__,'`-.__,
\_ _ \
,' / `, `.,'
___,'`-._ \_/ `,._ ;
__;_,' `-.`-'./ `--.____)
,-' _,--\^-'
,:_____ ,-' \
(,' `--. \;-._ ;
: Y `-/ `, :
: : : /_;'
: : | :
\ \ : :
`-._ `-.__, \ `.
\ \ `. \ `.
,-; \---)_\ ,','/
\_ `---'--'" ,'^-;'
(_` ---'" ,-')
/ `--.__,. ,-' \
-hrr- )-.__,-- ||___,--' `-.
/._______,|__________,'\
`--.____,'|_________,-'
__
_ ,___,-'",-=-.
__,-- _ _,-'_)_ (""`'-._\ `.
_,' __ |,' ,-' __) ,- /. |
,'_,--' | -' _)/ `\
,',' ,' ,-'_,` :
,' ,-' ,(,-( :
,' ,-' , _ ;
/ ,-._/`---' /
/ (____)(----. ) ,'
/ ( `.__, /\ /,
: ;-.___ /__\/|
| ,' `--. -,\ |
: / \ .__/
\ (__ \ |_
\ ,`-, * / _|,\
\ ,' `-. ,'_,-' \
(_\,-' ,'\")--,'-' __\
\ / // ,'| ,--' `-.
`-. `-/ \' | _,' `.
`-._ / `--'/ \
-hrr- ,' | \
/ | \
,-' | /
/ | -'
*/
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp> // Common file
#include <ext/pb_ds/tree_policy.hpp> // Including
using namespace __gnu_pbds;
using namespace std;
typedef long long int ll;
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<vi> vvi;
typedef vector<vl> vvl;
typedef vector<pi> vpi;
typedef vector<pl> vpl;
typedef vector<vpi> vvpi;
typedef vector<vpl> vvpl;
typedef set<int> si;
typedef multiset<int> msi;
typedef set<ll> sl;
typedef multiset<ll> msl;
typedef tree<
pl,
null_type,
less<pl>,
rb_tree_tag,
tree_order_statistics_node_update>
ordered_set;
typedef long double ld;
#define clrcin cin.ignore(numeric_limits<streamsize>::max(),'\n');
#define GOGOGO ios::sync_with_stdio(false); cin.tie(nullptr);
#define BYEBYE return 0;
#define all(cn) (cn).begin(), (cn).end()
#define rep(i, n) for (int i = 0; i < n; ++i)
#define repk(i, k, n) for(int i = k; i < n; ++i)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define popcnt __builtin_popcount
#define gcd std::__detail::__gcd
#define lcm std::__detail::__lcm
const int INFI = 1e9 + 5;
const ll INFL = 1e17 + 5;
template<class T> using func = function<T>;
template<class T> void aread(T* arr, int ___n)
{
rep(i, ___n)
{
cin >> arr[i];
}
}
//#define BRUH_WHY_TESTCASES
//#define PREC 10
//#define USACO "sleepy"
const int maxn = 2e5 +5;
const ll mod = 1e9 + 7;
int a[maxn];
int sieve[maxn];
map<ll, ll> a_exps[maxn];
multiset<ll> exponent_counts[maxn];
int zero_counts[maxn]; // for each prime i, how many exponents are 0
int n, q;
ll bexp(ll b, ll p) { // calculate b^p modulo mod
ll curr = b; ll res = 1;
while(p) {
if(p%2) {
res *= curr; res %= mod;
}
curr *= curr; curr %= mod; p/=2;
}
// curr = b, b^2, b^4, b^8, ...
// we iterate over the bits of the exponent...
return res;
}
void init_sieve() {
for(int i = 2; i < maxn; ++i) {
// n*log(n)
if(sieve[i] == 0) {
// i is prime
for(int j = i; j < maxn; j += i) { // iterate over all multiples of i
sieve[j] = i;
}
}
}
}
vpl factor(int x) {
vpl res;
while(x != 1) {
int cnt = 0;
int removing_now = sieve[x];
while(sieve[x] == removing_now) {
cnt++;
x /= removing_now;
}
res.push_back({(ll)removing_now, (ll)cnt});
}
return res;
}
void solve() {
init_sieve();
cin >> n >> q;
aread(a, n);
for(int i = 1; i < maxn; ++i) {
zero_counts[i] = n;
}
rep(i, n) {
vpl factors = factor(a[i]);
for(auto f : factors) { // {p, a} (p^a)
exponent_counts[f.first].insert(f.second);
zero_counts[f.first]--;
a_exps[i][f.first] = f.second;
}
}
ll ans = 1;
for(int i = 1; i < maxn; ++i) {
if(zero_counts[i] == 0) {
ans *= bexp(i, *exponent_counts[i].begin()); ans %= mod;
}
}
rep(_, q) {
int i; ll x; cin >> i >> x; --i;
vpl factors = factor(x);
for(auto f : factors) {
if(!a_exps[i].count(f.first)) { // I did not find
a_exps[i][f.first] = f.second;
exponent_counts[f.first].insert(f.second);
zero_counts[f.first]--;
if(zero_counts[f.first] == 0) {
ans *= bexp(f.first, *exponent_counts[f.first].begin()); ans %= mod;
}
} else { // I did find
ll old_min = *exponent_counts[f.first].begin();
exponent_counts[f.first].erase(exponent_counts[f.first].find(a_exps[i][f.first]));
a_exps[i][f.first] += f.second;
exponent_counts[f.first].insert(a_exps[i][f.first]);
ll new_min = *exponent_counts[f.first].begin();
if(zero_counts[f.first] == 0) {
ans *= bexp(f.first, new_min - old_min); ans %= mod;
}
}
}
cout << ans << '\n';
}
}
signed main()
{
#ifdef USACO
freopen(USACO ".in", "r", stdin);
freopen(USACO ".out", "w", stdout);
#endif
GOGOGO
#ifdef PREC
cout << fixed << setprecision(PREC);
#endif
int t=1;
#ifdef BRUH_WHY_TESTCASES
cin >> t;
#endif
while(t--)
{
solve();
}
BYEBYE
}
/* PLEASE READ THIS
* N = 1
* GUESS A!!!!!!!
* DO SOMETHING INSTEAD OF NOTHING
*/