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 | 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 |
# | User | Contrib. |
---|---|---|
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 |
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