https://www.hackerrank.com/challenges/tutzki-and-lcs/problem
I ve been trying to solve this for hours and could'nt find any understandable online solution, Can anyone explain the logic and code behind this problem.
№ | Пользователь | Рейтинг |
---|---|---|
1 | jiangly | 3898 |
2 | tourist | 3840 |
3 | orzdevinwang | 3706 |
4 | ksun48 | 3691 |
5 | jqdai0815 | 3682 |
6 | ecnerwala | 3525 |
7 | gamegame | 3477 |
8 | Benq | 3468 |
9 | Ormlis | 3381 |
10 | maroonrk | 3379 |
Страны | Города | Организации | Всё → |
№ | Пользователь | Вклад |
---|---|---|
1 | cry | 168 |
2 | -is-this-fft- | 165 |
3 | Dominater069 | 161 |
4 | Um_nik | 159 |
4 | atcoder_official | 159 |
6 | djm03178 | 157 |
7 | adamant | 153 |
8 | luogu_official | 150 |
9 | awoo | 149 |
10 | TheScrasse | 146 |
https://www.hackerrank.com/challenges/tutzki-and-lcs/problem
I ve been trying to solve this for hours and could'nt find any understandable online solution, Can anyone explain the logic and code behind this problem.
Название |
---|
You just calculate the $$$LCS$$$ as you do.
Let $$$dp1[i][j]$$$ denotes the $$$LCS$$$ of the suffix starting from $$$ith$$$ and $$$jth$$$ index of string $$$a$$$ and $$$b$$$ respectively.
And $$$dp2[i][j]$$$denotes the $$$LCS$$$ of the prefix till $$$ith$$$ and $$$jth$$$ index of string $$$a$$$ and $$$b$$$ respectively.
Now assume we are adding a character before $$$ith$$$ index of string $$$a$$$ to match it with $$$jth$$$ index of string $$$b$$$. Think of the condition for this pair of indexes to contribute to the answer.
$$$dp1[i][j+1] + dp2[i-1][j-1] == LCS$$$
If we implement that condition directly, then it will overcount. Think why is it so?
Only the different number of final $$$a$$$ string formed matters. So, there might be a possibility that you are counting the same character at an index multiple times because that character may appear at different positions in string $$$b$$$.
You can create a $$$vis[i][j]$$$ array to mark $$$1$$$ if you have placed $$$jth$$$ character at index $$$i$$$, and then count the final answer using the number of elements that are marked $$$1$$$ in the $$$vis$$$ array.
Thank you so much brother. I understood your explanation.