How to calculate ?
Constraints are 1 ≤ N, M ≤ 2 * 109, 1 ≤ x ≤ 50 and time limit is 1 second.
Please can someone help?
№ | Пользователь | Рейтинг |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 167 |
2 | Um_nik | 163 |
3 | maomao90 | 162 |
3 | atcoder_official | 162 |
5 | adamant | 159 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | Dominater069 | 153 |
9 | nor | 153 |
How to calculate ?
Constraints are 1 ≤ N, M ≤ 2 * 109, 1 ≤ x ≤ 50 and time limit is 1 second.
Please can someone help?
Название |
---|
Auto comment: topic has been updated by Mamedov (previous revision, new revision, compare).
An O(x^2) solution is described here: https://www.hackerrank.com/contests/infinitum-mar14/challenges/summing-the-k-n-r-series
In our case modulo M is not a prime, it can be any number, but by this way we will need to calculate modular inverse.
It can be solved using "divide and conquer" approach.
Assume you try to calculate
In the last sum
It's clear that it's need to calculate sums
for all t from 0 to x to calculate the above sum.
Than use "divide and conquer" approach to calculate all this sums for N, first calculate this sums for N/2 and than use the above formulas to calculate sums for N.
Thanks a lot sokian. I got this idea.
Specifying the time constraint would be nice. :)
I think sokian's approach will be O(x2log(N))
Auto comment: topic has been updated by Mamedov (previous revision, new revision, compare).
In what judge is this problem available? i would like to test my code.
https://www.e-olymp.com/en/problems/1096
Thanks