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

Автор none__none, история, 4 года назад, По-английски

Hi, I was looking for an idea for my college project.

If anyone has any good idea please suggest.

I Just want to build something which uses DS and Algo extensively.

Thanks.

Полный текст и комментарии »

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

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

There is a NxM 2D matrix given .Each Cell contains a value.

We need to find the smallest number that can be reached from a cell but we are allowed to

go from one cell to its adjacent cell which share an edge and we can go

from one cell to another only if another cell value is strictly less than the

current cell. And we have to find this value for each cell.

e.g-

A=[[2 4 3 1] [2 1 5 0]]

result for the above is:

res=[[2 0 0 0] [1 1 0 0]]

0<=A[i]<=1000000 1<= N,M<=1000

Полный текст и комментарии »

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