Problem link : 340E - Iahub and Permutations
Can anyone prove following:
dp[i] = (y+i-1)*dp[i-1] + (i-1)*dp[i-2];
This is an AC solution by problem-solved : 4384292
# | User | Rating |
---|---|---|
1 | tourist | 3856 |
2 | jiangly | 3747 |
3 | orzdevinwang | 3706 |
4 | jqdai0815 | 3682 |
5 | ksun48 | 3591 |
6 | gamegame | 3477 |
7 | Benq | 3468 |
8 | Radewoosh | 3462 |
9 | ecnerwala | 3451 |
10 | heuristica | 3431 |
# | User | Contrib. |
---|---|---|
1 | cry | 167 |
2 | -is-this-fft- | 162 |
3 | Dominater069 | 160 |
4 | Um_nik | 158 |
5 | atcoder_official | 157 |
6 | Qingyu | 156 |
7 | djm03178 | 151 |
7 | adamant | 151 |
9 | luogu_official | 150 |
10 | awoo | 147 |
Problem link : 340E - Iahub and Permutations
Can anyone prove following:
dp[i] = (y+i-1)*dp[i-1] + (i-1)*dp[i-2];
This is an AC solution by problem-solved : 4384292
Name |
---|
dp[i] — in how many ways can we fill (i + y) free positions if we have i bad numbers (numbered 1 to i) and y good numbers (numbered i + 1 to i + y)
dp[0] = y!
dp[1] = y * y! — y places to put 1 bad number
dp[i] = y * dp[i - 1] + (i - 1) * (dp[i - 1] + dp[i - 2])
1) y * dp[i - 1] — put a good number to position i:
we waste 1 good number, but now i become good, so stay y good numbers and (i - 1) bad numbers
2) (i - 1) * dp[i - 1] — put 1 of (i - 1) bad numbers to position i and put i to one of the positions (i + 1...i + y)
(i - 1) * dp[i - 2] — put 1 of (i - 1) bad numbers to position i and put i to one of the positions (1...i - 1)
We do not need other multipliers, because we only should to fix number at the position i.
(i - 1) is for choosing a bad number. But why dpi - 1 ?
Put 1 bad number to pos i (in (i - 1) ways), then put i to one of positions (i + 1...i + y) (in y ways).
And we have y good and (i - 2) bad numbers left, which can be permuted in dpi - 2 ways.
So I get
(i-1)*y*dp[i-2]
.And...
Lets say I choose j from (i - 1) bad numbers. If I put i to jth position then there are dpi - 2 ways to do so (we would have y good and i - 2 bad numbers). If I don't, then i becomes bad (as jth pos becomes forbidden pos of i) and I can permute them in dpi - 1 ways.I get
(i-1)*(dp[i-2]+dp[i-1])
.Can you please explain whole part 2 clearer and tell me where I am making mistake? :)
actually,the second part is just like derangement
Yes, I read about it, not here but here :). But I get WA : 4434242 :(
It is obvious that my solution is incorrect (see 1) below) but I can't find where I made a mistake.
think about it : part 2 has nothing to do with y
we just need to put the limited numbers first
1:put the numbers in unlimited positions 2:put the numbers in limited positions so the second part has nothing todo with y