Coder Social home page Coder Social logo

bitmap_challenge's Introduction

Bitmap Challenge

Task

There is given a rectangular bitmap of size n*m. Each pixel of the bitmap is either white or black, but at least one is white. The pixel in i-th line and j-th column is called the pixel (i,j). The distance between two pixels p1=(i1,j1) and p2=(i2,j2) is defined as d(p1,p2)=|i1-i2|+|j1-j2|.

Write a program which:

  • Reads the description of the bitmap from the standard input.
  • For each pixel, computes the distance to the nearest white.
  • writes the results to the standard output.

Input

  • The number of test cases t (1≤t≤1000) is in the first line of input.
  • Then t test cases follow separated by an empty line.
  • In the first line of each test case there is a pair of integer numbers n, m separated by a single space, 1<=n <=182, 1<=m<=182.
  • In each of the following n lines of the test case exactly one zero-one word of length m, the description of one line of the bitmap, is written.
  • On the j-th position in the line (i+1), 1 <= i <= n, 1 <= j <= m, is '1' if, and only if the pixel (i,j) is white.
1
3 4
0001
0011
0110

Output

3210
2100
1001

Usage

APPROACH

APPROACH : Multi-Source Breadth First Search

PSEUDO CODE :

  • Create an empty queue.
  • Traverse the whole matrix and insert the coordinates of all 1’s in the queue in the form of a pair.
  • Now do a BFS traversal of the graph using the above created queue.
  • Run a loop till the queue is not empty.
  • Extract the front node of the queue and pop it and insert all its adjacent and unmarked elements by moving one step at a time in any of the four directions.
  • Update the minimum distance as the distance of current node +1 and insert the coordinates of the next element in the queue.

Time Complexity

  • O(N*M), where ‘N’ is the number of rows and ‘M’ is the number of columns of the matrix.

Space Complexity

  • O(N*M), where ‘N’ is the number of rows and ‘M’ is the number of columns of the matrix.

Running the code

  1. Install dependencies
yarn install
  1. Modify input.txt with desired cases or use the defaults.

  2. Execute the code that'll solve the test cases and output to console.

yarn run start

Running the test suite

yarn run test

bitmap_challenge's People

Contributors

amulyakashyap09 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.