Hello. If there's someone who knows a better way of explaining the second paragraph of induction part of this problem's editorial then please do it. I'm having a hard time understanding it.
Problem 1604-C Di-Visible Confusion
Thanks in advance.
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3831 |
3 | Radewoosh | 3646 |
4 | jqdai0815 | 3620 |
4 | Benq | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | gamegame | 3386 |
10 | ksun48 | 3373 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Hello. If there's someone who knows a better way of explaining the second paragraph of induction part of this problem's editorial then please do it. I'm having a hard time understanding it.
Problem 1604-C Di-Visible Confusion
Thanks in advance.
Name |
---|
Auto comment: topic has been updated by Wasif_Shahzad (previous revision, new revision, compare).
They are basically checking if there exists a number in range [2,i+1] which doesn't divide a[i] and in case they all divide it then it must be divisible by there lcm which is going beyond the limit of a[i] i.e, 10^9. So it's not possible for a[i] to be divisible by all number in [2,i+1] if i>=22.
why only for $$$ i <= 23 $$$? I can understand that other numbers will be multiples of these numbers but what about prime numbers which are lets say on prime indices.
for example: say some number $$$ x $$$ is at $$$ i = 48 $$$
This case is confusing me only.
Edit: sorry if I couldn't convey my doubt clearly but it is related to prime numbers in the array
Ok let's take an example of array a = [1,5,3,7,2,16,31] , in this array 31 is a prime number and is also present at index 7(1-based indexing) , so we can simply delete 31 as it is not divisible by (i+1) i.e, 8.
If still not clear pls tell me briefly.