So this is a tricky one, it's simplified somewhat but is based on a real world problem concerning memory optimization (its not homework)
Say you are a period between two dates, (like 2013-01-01 to 2013-01-31). Now you're given a bunch of date entries which each contain a date and a color. There's a maximum of one entry per date but all dates might not have an entry.
For example:
2013-01-01 Yellow
2013-01-02 Blue
2013-01-03 Red
2013-01-05 Yellow

and so forth
Now say we have a span which contains a start date, and enddate, a color. We also have an optional day of week filter, which if declared,can contain one or several days of the week. In those cases the span is only "active" for those days.
For example in the below example we might have:
Span #1: 2013-01-01 - 2013-01-06 BLUE
Span #2: 2013-01-13 - 2013-01-27 RED Mon
Span #3: 2013-01-08 - 2013-01-26 CYAN Wed Tue Sat Sun
and so forth
The problem is to come up with a feasible algorithm (from performance, memory point of view, and no quant computers :) that comes up with the least amount of spans to describe the given period (doesn't have the be the guaranteed minimum amount however even if that would be nice :) . Spans may overlap.
Brute forcing gets pretty nasty it would seem but there should be an elegant solution