Interview Question


Country: United States




Comment hidden because of low score. Click to expand.
1
of 1 vote

Can you please elaborate on this please "The goal is for the furthest of all lots to be as near as 1 possible to an office building. Determine the building placement to minimize the distance the 0 most distant lot is from an office building"

- varunaseneviratna December 30, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

in the given question n(no.of cities) does not exceed 5 (when i was asked in my interview question) so you can simply use brute force technique by placing all cities in all the way possible if n is some higher number then you can use dyanmic programming.

- sahil amin October 07, 2020 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

public int shortestDistance(int[][] grid) {
int[][] distance = new int[grid.length][grid[0].length];
int[][] reach = new int[grid.length][grid[0].length];


int numBuilding = 0;
for (int i = 0; i < grid.length; i++) {
for (int j = 0; j < grid[0].length; j++) {
if (grid[i][j] == 1) {
helper(grid, distance, reach, i, j);
numBuilding++;
}
}
}

int result = Integer.MAX_VALUE;
for (int i = 0; i < grid.length; i++) {
for (int j = 0; j < grid[0].length; j++) {
if (grid[i][j] == 0 && reach[i][j] == numBuilding) {
result = Math.min(result, distance[i][j]);
}
}
}

return result == Integer.MAX_VALUE ? -1 : result;
}

private void helper(int[][] grid, int[][] distance, int[][] reach, int i, int j) {

int[] dx = {-1, 0, 1, 0};
int[] dy = {0, 1, 0, -1};

//two queue, one for direction, one for distance tracking
LinkedList<int[]> q = new LinkedList<>();
LinkedList<Integer> qDist = new LinkedList<>();

q.offer(new int[]{i, j});
qDist.offer(1);

while (!q.isEmpty()) {
int[] head = q.poll();
int dis = qDist.poll();

for (int k = 0; k < 4; k++) {
int x = head[0] + dx[k];
int y = head[1] + dy[k];

if (x >= 0 && y >= 0 && x < grid.length && y < grid[0].length && grid[x][y] == 0) {
grid[x][y] = -1;

q.offer(new int[]{x, y});
qDist.offer(dis + 1);

distance[x][y] += dis;
reach[x][y]++;
}
}
}

for (int m = 0; m < grid.length; m++) {
for (int n = 0; n < grid[0].length; n++) {
if (grid[m][n] == -1) {
grid[m][n] = 0;
}
}
}
}

- Anonymous August 07, 2023 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 1 vote

You have to place n offices in such a way that for any non-office cell, it's nearest as possible. In short among all combinations of placing n offices, find min(max(office_distance_from_cells) of all combinations)

- keviIma December 31, 2018 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More