Please read the new rule regarding the restriction on the use of AI tools. ×

kunalkumar050894's blog

By kunalkumar050894, history, 6 years ago, In English

I can't understand dp solution of — http://codeforces.me/contest/225/problem/C. Can anyone please explain it in a simple way?

  • Vote: I like it
  • +3
  • Vote: I do not like it

»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

The grid has n rows and m columns.

We first calculate what is the cost for each column to turn it into black and white as well. Suppose we store the number of white cells in columns in an array whiteCount[n].

consider a 2-d array dp[n][2];

dp[i][0]=minimum cost to convert the current column completely into black and have the barcode valid.

dp[i][1]=minimum cost to convert the current column completely into white and have the barcode valid.

Now,

Let's iterate through 1 to m columns.

At every column, we have two choices.We paint it completely black or completely white. But, we also have to make sure that we have atleast x-1 and atmost y-1 columns behind the current column which have the same color.

Suppose we are at column i. We now iterate j through columns i-y+1 to i-x+1 and find the cost to convert those columns to black.And the j-1 column should certainly have white.

So, the dp relation would be,

dp[i][0] would be minimum of (sum of whiteCounts from j to i + dp[j-1][1])

dp[i][1] would be minimum of (sum of blackCounts(can be obtained easily if you know whiteCounts) from j to i + dp[j-1][0])

Also, you can save time by checking out this blog entry and reading partial sum :)