Блог пользователя Samarth12

Автор Samarth12, история, 5 лет назад, По-английски

How to solve this problem of ICPC Online round 2019: https://www.codechef.com/ICPCIN19/problems/SHUFGRID

  • Проголосовать: нравится
  • 0
  • Проголосовать: не нравится

»
5 лет назад, # |
  Проголосовать: нравится -10 Проголосовать: не нравится

Practice

  • »
    »
    5 лет назад, # ^ |
      Проголосовать: нравится +8 Проголосовать: не нравится

    If u can't solve it then please don't spam....

    • »
      »
      »
      5 лет назад, # ^ |
        Проголосовать: нравится +10 Проголосовать: не нравится

      Make a dp of state N X (2 X 2) i.e. dp[i][j][k] , i represents number of steps you have taken. j represents whether you are in the same row. k represents whether you are in the same column. The answer will be independent of the row and column i.e. all points in the grid will have the same probability.

      Make appropriate transition in the dp from ith step to (i+1)th step.