Interview Question for Accountants


Country: India




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

It looks like dynamic programming with either bottom up or memoization
I get the following recurrence:
Let P be the probability of getting through i steps with a budget b
P(i, b)
C is a vector of machine costs
R is the vector of machine reliabilities
Let n be the number of extra machines you use to add to step i
P(i, b) = max( P(i-1, b - n * C[i]) * (1 – (1 – R[i]) * (n + 1))) for:
n = [0 to floor(b / C[i])] // from 0 to the largest number of such machines you could afford

Does this look right to you ?

- DR ADM June 10, 2017 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

#include "stdafx.h"
#include <math.h>
#include <iostream>
using namespace std;

#define STEPS 4
#define BUDGET 7

int _tmain(int argc, _TCHAR* argv[])
{
	float p[STEPS + 1][BUDGET + 1]; // Probability that it worked on a particular step with a particular budget 
	int used[STEPS][BUDGET]; // machines used 
	float r[STEPS] = { .99f, .8f, .9f, .4f }; // Probability that a step works 
	int c[STEPS] = { 2, 2, 5, 2 }; // cost of a machine
	int i, s;

	for (s = 0; s <= BUDGET; s++) // for all amounts you spend 
	{
		p[0][s] = 1.0f; // if you have not run any steps the prob is 1 
	}

	for (i = 1; i <= STEPS; i++) // init the 0 spent colum 
	{
		p[i][0] = p[i - 1][0] * r[i - 1];
	}

	for (i = 1; i <= STEPS; i++)
	{
		for (s = 1; s <= BUDGET; s++)
		{
			int nm = s / c[i - 1]; // number of extra machines we could get 
			float best = 0;
			used[i - 1][s - 1] = 0;
			for (int mi = 0; mi <= nm; mi++)
			{
				float sp = 1.0f - powf((1.0f - r[i - 1]), mi + 1); // step probability  
				int leftover = s - mi * c[i - 1];
				float total_prob = p[i - 1][leftover] * sp; // probability so far 

				if (best < total_prob)
				{
					best = total_prob;
					used[i - 1][s - 1] = mi; // set number of machines used at this stage 
				}
			}
			p[i][s] = best;
			cout << used[i - 1][s - 1] << " " << best << endl;
		}
		cout << i << "---------------------------------------------------------------------" << endl;
	}

	int out[STEPS];

	int left = BUDGET - 1; // need an offset becas used array index starts at 0 

	for (i = STEPS-1; i >= 0; i--) // get the result in reverse order  
	{
		out[i] = used[i][left];      // save number of machines 
		int cost = used[i][left] * c[i]; //How much did they cost   
		left = left - cost;    //how much do you have left    
	}

	// Print the number of extra machines best employed for each step in the correct order     
	for (i = 0; i < STEPS; i++)
	{
		cout << out[i] << " ";
	}
}

- Dr.Milota June 11, 2017 | 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