Skip to content

einnjo/bitmap-challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Running the code

  1. Install dependencies
yarn install
  1. (OPTIONAL) 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 start

Running the test suite

yarn test

About

Solution to the bitmap code challenge.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published