-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathE.cpp
More file actions
393 lines (299 loc) · 7.92 KB
/
Copy pathE.cpp
File metadata and controls
393 lines (299 loc) · 7.92 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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
/****************************** begin /template.h ******************************/
/***********************************************************************
* [?] APIO 2021 Template
* [+] Made By: Lior Yehezkely, FiveSixFiveFour
* [~] Apples are ORZ
* *********************************************************************/
/*** begin #define flags ***/
// #define USE_ORDERED_STATISTICS
// #define BIG_BIGINT
/*** end #define flags ***/
/*** begin includes ***/
#include <bits/stdc++.h>
#ifdef USE_ORDERED_STATISTICS
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
#endif
using namespace std;
/*** end includes ***/
/*** begin typedefs ***/
typedef long long int ll;
#ifdef BIG_BIGINT
typedef __int128_t bigint;
#else
typedef ll bigint;
#endif
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 long double ld;
template<class T> using func = function<T>;
#ifdef USE_ORDERED_STATISTICS
typedef tree<
pl,
null_type,
less<pl>,
rb_tree_tag,
tree_order_statistics_node_update>
ordered_set;
#endif
/*** end typedefs ***/
/*** begin #defines ***/
#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 csz(c) ((int)c.size())
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define fi first
#define se second
#define popcnt __builtin_popcount
#define popcntll __builtin_popcount_ll
/*** end #defines ***/
const int INFI = 1e9 + 5;
const ll INFL = 1e18 + 5;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
auto dist = uniform_int_distribution<int>(0, INFI);
auto distll = uniform_int_distribution<ll>(0, INFL);
int rnd() { return dist(rng); }
ll rndl() { return distll(rng); }
/****************************** end /template.h ******************************/
/****************************** begin /main.cpp ******************************/
/*** begin #define flags ***/
//#define BRUH_WHY_TESTCASES
//#define PREC 7
//#define INPUT_FILE "hi.in"
//#define OUTPUT_FILE "hi.out"
/*** end #define flags ***/
/****************************** begin /math/math.h ******************************/
const int mod = 1e9 + 7; // CHANGE
ll reduce(ll x) {
x %= mod;
if(x < 0) x += mod;
return x;
}
ll bexp(ll b, ll p) {
b = reduce(b);
ll res = 1; ll curr = b;
while(p) {
if(p%2) {
res *= curr; res %= mod;
}
curr *= curr;
curr %= mod;
p /= 2LL;
}
return res;
}
ll inv(ll x) {
return bexp(x, mod-2);
}
template<uint32_t world_size> class Combinatorics
{
private:
ll factorial_cache[world_size+1];
ll inverse_factorial_cache[world_size+1];
public:
Combinatorics()
{
factorial_cache[0] = 1;
factorial_cache[1] = 1;
for(int i = 2; i <= world_size; ++i)
{
factorial_cache[i] = factorial_cache[i-1] * i;
factorial_cache[i] %= mod;
}
inverse_factorial_cache[world_size] = inv(factorial_cache[world_size]);
for(int i = world_size - 1; i >= 0; --i)
{
inverse_factorial_cache[i] = (i+1LL) * inverse_factorial_cache[i+1];
inverse_factorial_cache[i] %= mod;
}
}
inline ll fact(int x)
{
return factorial_cache[x];
}
inline ll ifact(int x)
{
return inverse_factorial_cache[x];
}
inline ll permute(int n, int k)
{
if(k > n) return 0;
return (fact(n) * ifact(n-k)) % mod;
}
inline ll choose(int n, int k)
{
if(k > n) return 0;
return (((fact(n) * ifact(k)) % mod) * ifact(n-k)) % mod;
}
};
inline ll gcd(ll a, ll b)
{
return (b == 0) ? a : gcd(b, a % b);
}
inline ll lcm(ll a, ll b)
{
return (a / gcd(a, b)) * b;
}
struct EGCDResult
{
ll x;
ll y;
ll d;
};
EGCDResult extended_gcd(ll a, ll b) // theorem: there exist x, y such that x*a + y*b == gcd(a, b)
{
if(b == 0) return EGCDResult{ .x = 1, .y = 0, .d = a };
EGCDResult next_stage = extended_gcd(b, a % b);
return EGCDResult{ .x = next_stage.y, .y = next_stage.x - a / b * next_stage.y, .d = next_stage.d };
}
template<uint32_t sieve_size> class FactorSieve
{
public:
int sieve[sieve_size+1];
FactorSieve()
{
sieve[1] = 1;
for(int i = 2; i <= sieve_size; ++i)
{
if(!sieve[i])
{
for(int j = i ; j <= sieve_size; j += i)
{
sieve[j] = i;
}
}
}
}
inline vector<pair<int, int>> factor(int x)
{
vector<pair<int, int>> factors;
while(x != 1)
{
int cnt = 0;
int curr = this->sieve[x];
while(this->sieve[x] == curr)
{
cnt++;
x /= curr;
}
factors.emplace_back(curr, cnt);
}
return factors;
}
void get_divisors(int x, vector<int>& res, int out_factor = 1)
{
if(x != 1)
{
int cnt = 0;
int curr = this->sieve[x];
while(this->sieve[x] == curr)
{
cnt++;
x /= curr;
}
for(int chosen_cnt = 0, extra_factor = 1; chosen_cnt <= cnt; ++chosen_cnt, extra_factor *= curr)
{
get_divisors(x, res, out_factor * extra_factor);
}
}
else
{
return res.push_back(out_factor);
}
}
inline bool is_prime(int x)
{
return sieve[x] == x && x != 1;
}
};
template<uint32_t sieve_size> class BooleanSieve
{
public:
bitset<sieve_size+1> is_composite;
BooleanSieve()
{
is_composite = 0;
is_composite[1] = 1;
for(int i = 2; i <= sieve_size; ++i)
{
if(!is_composite[i])
{
for(int j = 2*i ; j <= sieve_size; j += i)
{
is_composite[j] = 1;
}
}
}
}
inline bool is_prime(int x)
{
return !is_composite[x];
}
};
/****************************** end /math/math.h ******************************/
const int maxn = 5e5 + 5;
Combinatorics<maxn> cmb;
ll a[maxn];
int n;
void solve(int t) {
cin >> n; n++;
rep(i, n) {
cin >> a[i];
}
ll res = 0;
for(int i = 0 ; i < n; i++) {
res += cmb.choose(i+a[i], i+1);
res %= mod;
}
cout << res << '\n';
}
signed main()
{
#ifdef INPUT_FILE
freopen(INPUT_FILE, "r", stdin);
#endif
#ifdef OUTPUT_FILE
freopen(OUTPUT_FILE, "w", stdout);
#endif
GOGOGO
#ifdef PREC
cout << fixed << setprecision(PREC);
#endif
int t=1;
#ifdef BRUH_WHY_TESTCASES
cin >> t;
#endif
//init();
int count = 1;
while(t--)
{
// cout << "Case #" << count << ":";
solve(count);
count += 1;
}
BYEBYE
}
/* PLEASE READ THIS
* N = 1
* GUESS A!!!!!!!
* DO SOMETHING INSTEAD OF NOTHING
*/
/****************************** end /main.cpp ******************************/