Editorial for TLE '17 Contest 4 P5 - Pascal's Tree
Submitting an official solution before solving the problem yourself is a bannable offence.
Author:
For the first subtask, it is enough to generate the
Time Complexity: Slower than
For the second subtask, it is enough to generate the BigInteger
or Python's normal integer, then print this number modulo
Time Complexity:
For the third subtask, we first notice that
Why do we need the multiplicative inverse? Suppose that you have
Next, suppose that we have already computed
The time complexity of this computation is
Make sure that 64-bit integers are used, and no overflows will occur.
Time Complexity:
The fourth subtask is a distraction. This time, we could have
For the fifth subtask, we will first look at the relationship between two adjacent combinations.
The proof of this relationship is very boring. I recommend that you try to prove it! Hint: expand everything.
A combination can always be factored as a product of prime numbers. Also, two adjacent combinations share many of the same prime factors. We want to create a multiset that supports these 3 operations:
- Insert a prime number
- Erase an existing number in the multiset
- Calculate the product of the numbers in the multiset modulo
This data structure is easiest to implement as a segment tree, although a BBST should also work fine too.
In total, around
Time Complexity:
Note 1: If you have trouble passing this problem, you may find
Note 2: Some programmers have found a way to solve this problem using FFT. I may include an analysis of this approach later.
Comments
The answers are the coefficients of
, which can be computed with FFT and binary exponentiation.
It can also be done using CRT. Check my solution for more details.