I keep getting these hard interview questions. This one really baffles me.

You're given a function poly that takes and returns an int. It's actually a polynomial with nonnegative integer coefficients, but you don't know what the coefficients are.

You have to write a function that determines the coefficients using as few calls to poly as possible.

My idea is to use recursion knowing that I can get the last coefficient by poly(0). So I want to replace poly with (poly - poly(0))/x, but I don't know how to do this in code, since I can only call poly. ANyone have an idea how to do this?

link|improve this question

1  
This one makes NO sense to me at all. What is the name and meaning of the single integer parameter x when you call Poly(x)? Poly(coefficient_index)? It returns a coefficient? What does it return? Your question is not well defined. – Warren P Jul 9 '11 at 19:10
1  
Do you know how many terms there are? – Oli Charlesworth Jul 9 '11 at 19:11
4  
@Warren: I think the OP means that for something of the form a + b.x + c.x^2 + d.x^3 + ..., evaluating for x=0 will give you a. – Oli Charlesworth Jul 9 '11 at 19:13
No, you don't know the degree. That would help, I think. – Daniel Jul 9 '11 at 19:19
@warren: yeah. i know. I think I bombed it. I just have no idea how to do this, and that was all I could think of. – Daniel Jul 9 '11 at 19:27
show 1 more comment
feedback

1 Answer

up vote 31 down vote accepted

Here's a neat trick.

int N = poly(1)

Now we know that every coefficient in the polynomial is at most N.

int B = poly(N+1)

Now expand B in base N+1 and you have the coefficients.


Attempted explanation: Algebraically, the polynomial is

poly = p_0 + p_1 * x + p_2 * x^2 + ... + p_k * x^k

If you have a number b and expand it in base n, then you get

b = b_0 + b_1 * n + b_2 * n^2 + ...

where each b_i is uniquely determined and b_i < n.

link|improve this answer
I don't understand this at all. – Daniel Jul 9 '11 at 19:19
3  
That's clever! +1 for sure. – Draksis Jul 9 '11 at 19:20
4  
I'll try to explain. Say poly = 4x^3 + 3x^2 + x + 2, just to simplify the argument. If you do poly(1), that gives you the sum of the coefficients of the polynomial, because you're just doing 4*1^3 + 3*1^2 + 1*1 + 2. Since all of the coefficients are non-negative, you know that poly(1) + 1 > any of the coefficients by itself. Now that you are confident of that, you can proceed to do poly(M), where M = poly(1) + 1. This would give you 4*M^3 + 3*M^2 + 1*M^1 + 2*M^0. This looks like the definition of a base number, base M (like binary is base 2, hexadecimal is base 16, etc). Continued... – Draksis Jul 9 '11 at 19:26
4  
Ok. So how the hell was I suppose to think of doing that? – Daniel Jul 9 '11 at 19:28
5  
Cool. You're exploiting the fact that all quantities are NONNEGATIVE integers. I would have expected that we need as many calls as the degree. I believe this is the case for real-valued coefficients. – Szabolcs Jul 9 '11 at 19:31
show 13 more comments
feedback

Your Answer

 
or
required, but never shown

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