Hi, I have written this code and i am using dp for problem 553 A.What is wrong with my idea and code?
Question Link==>https://mirror.codeforces.com/contest/553/problem/A
My Submission==>55667272
# | 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 | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
6 | adamant | 157 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | djm03178 | 153 |
Hi, I have written this code and i am using dp for problem 553 A.What is wrong with my idea and code?
Question Link==>https://mirror.codeforces.com/contest/553/problem/A
My Submission==>55667272
Name |
---|
Auto comment: topic has been updated by BanazadehAria (previous revision, new revision, compare).
Try printing the dp table and inspecting the values. You should be able to deduce why your logic is wrong from there.
Thank you ,I think its a code problem.
What is wrong with it? ==> 1-If this new ball is from a new color then we must put it at last of the line Because it's the only and of course last element of new color. dp[i-1][j-1] 2-If it's not then we can put it anywhere else dp[i-1][j]*i
You are going to have to refer to a combinatorics text to check your concepts. I don't have time to debug your logic.
Ok you know you wrote 2 lines to say that you don't have time you could read two lines in that time.