Interview Question


Country: United States




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

Suppose we have to access a particular computer F. But it is not accessible from the outside world. Whereas computer A is accessible from outside and it is connected to computer F by having outgoing ports on A and incoming ports on F from A.
1. We can think of all computers as nodes and the port connections as edges in a graph.
2. Then we can find out the shortest possible distance from computer A to computer F by using Dijkistra's algorithm. And to access some other computer we can think of the same solution

- vgeek July 20, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

The question already marks its a graph algo, I think quick optimization is once unsafe computer list is parsed, do a BFS for 1 node and mark all unsafe computers. Remove these computers from further parsing of rest of the unsafe computers

- R July 20, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

1. U = Set of computers connected to outside, V = Set of all computers
2. For every node in U, do a BFS to add connected computers in set V.
3. Remove visited nodes from U and V, if present.
4. Remaining nodes in V are the 'safe' computers.

- loverisk July 22, 2014 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Build a min spanning tree. While building if you see any system which can be accessed from the outside then all the nodes in the min spanning tree can be termed unsafe. The same can be done again on remaining set of nodes (computers) until no further unsafe computers are found.

- brk August 31, 2014 | 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