Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have gone through one of the books of algorithm and have found a problem named Hiring Problem. Here is the situation:

I have to conduct an interview for hiring candidates for my company. I am not personally able to conduct the interview, as I have failed to do so. So I have hired an employment agency to help with hiring the candidate. Each day the agency will send me a candidate from among n candidates. Algorithm for this will be:

**Algo Hiring Candidate(n)**  
best=0 // The candidate with the least quality  
for i=1 to n  
If the candidate is better than the best valued candidate we should hire him  
Best=candidate[i]  
return i;  

But here, the interview cost will be always calculated as we have to take the interview of each candidate. So we have to concentrate on how to minimize the hiring cost.

Total cost will be O(interview cost and hiring cost)

I have gone through many observations, such as the agency will send the candidate randomly and in the worst case we have to hire all the candidates, then the hiring cost will be higher as each candidate came in an order of increasing quality.

But practically this is not possible, as it is never possible that all the candidates will come always in increasing order. They should come in a random order.

I have taken many observations but I am really not able to minimize the hiring cost. Can someone help me out through this problem.

share|improve this question
Looks like a fun problem... is this for a class? – Brian Driscoll Oct 6 '10 at 16:45
No sir...I have asked this so that I can improve my thinking ability. – Vibhakar SInha Oct 6 '10 at 16:47
The difference between your question and the secretary problem amelvin mentions comes in the form of costs. I'm having trouble understanding what the costs are, however. There seems to be a constant cost for each interview - i assume the hiring cost is just the sum of all interview costs? The problem is that you can't optimize hiring cost and candidate quality at the same time without some quantified trade off between them. – flies Oct 6 '10 at 17:23
regarding the "worst case" you mention, I don't understand how you would hire more than one person. I thought the problem was to pick a single candidate to hire. do you mean that the worst case would be having to interview all the candidates? – flies Oct 6 '10 at 17:25

1 Answer

I think that this is an example of the Secretary Problem.

share|improve this answer
Yup,but am not able to actually minimize the hiring cost. – Vibhakar SInha Oct 6 '10 at 16:48
That's my thought, too. So if I'm not mistaken, he should see 1/e of the candidates, then choose the best after that, right? – JoshD Oct 6 '10 at 16:49
That's it, Sir. – wok Oct 6 '10 at 16:50
I can't understand what you wanna say. – Vibhakar SInha Oct 6 '10 at 16:51
You cannot choose before 1/e, or it would not be optimal. – wok Oct 6 '10 at 16:52
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.