I have been practicing some programming contest questions (for fun and practice for upcoming contests) and am stuck on this one: http://dwite.ca/questions/power_tiles.html

I'm not really sure where I should start =/. How should I approach this question in order to solve it?

Thanks for the help

link|improve this question

25% accept rate
feedback

4 Answers

Here is a thread on specifically this topic - there you can see what other puzzlers were thinking: http://compsci.ca/v3/viewtopic.php?t=26423

link|improve this answer
feedback

What '1, 2, 4, 8, etc' do remember you?

Look at the figure, what is the order (in sterm of size) of filling you will choose?

link|improve this answer
feedback

I would start by figuring out the answer by hand to say a half dozen or so... then model how you did the problem in a program... Then after you have a working "brute force" answer try to solve the problem more elegantly.

I would start this problem by trying to put as many of the bigest size tiles in first then fill in where you can with the next bigest size that will fit. then smaller... until filled.

You might use Arrays or arrays to spacially keep track of the filled in space... however I suspect there is an easier way to do this via some simple calculations... like taking the dimensions and take the smaller of the two and utilizing log base 2 or something like that...

I am sure there is a nice neat recursive solution.. base on the powers of two .. then you could unravel that into a non-recursive solution...

link|improve this answer
feedback

Looks like a Dynamic Programming problem to me

  • Let F(w,h) be the minimum number of squares that tile the w by h rectangle.
  • Find a recursive formulation for F:

    • if w = 0 or h = 0 then F(w, h) = 0
    • otherwise, F(w,h) =

      For each allowable size a=i^2 <= min(w,h), try to place the a by a square (A)
       in the top left corner.
      One of the following possibilities will describe the
       optimal solution:
       +---+--+    +---+--+
       | A | C|    | A |  |
       +---+--+    +---+  |
       |  B   |    |B  |C |
       +------+    +---+--+
       So, choose the best of
         (1 + F(h-a, w) + F(h-a, w-a)) or
         (1 + F(h-a, a) + F(w-a, h))
      

Doing big-O analysis on a napkin, this seems to be an O(side^2 * sqrt(side))-ish algorithm. If this is too much, you can:

  • Try to exploiti symmetries in the problem (such as F(w,h) = F(h, w))
  • Check the analysis again to be sure it is too slow and you need another algorithm (perhaps you don't need to calculate for all (w,h) pairs?)
  • Find some property of the problem that allows for a simpler, less exaustive strategy. (For example, picking the largest square whenever possible is a simple greedy strategy... but does it work in all cases?)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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