Lecture 2016/10/28

Today we’ll continue with (and probably finish) our work on the change-making memoization/dynamic programming problem.

  • Here are sample solutions for part 1 and part 2 (updated with corrections by Victoria and others; thanks!) of the notes.
  • For Monday, please read Section 6.4 of Chapter 6. There will be a pre-class quiz (for which invitations have been sent by mail, as usual).
  • Don’t forget to expect quizzes in next week’s tutorial.

Lecture 2016/10/26

We’ll continue to part 2 of memoization and dynamic programming.

  • Here are the part 2 notes.
  • For Friday, please read section 6.3 of the textbook, but there is no pre-class quiz. (PLEASE finish 6.1 and 6.2 at minimum ASAP, however, or class time will be far less useful than it should be!)
  • Loads of midterm exam info has been posted on Piazza.
  • Expect a tutorial quiz next week!

Lecture 2016/10/21

Today we move on to memoization and dynamic programming! This is a widely applicable technique that also lets us practice algorithm design and analysis, designing recursive solutions, and designing iterative solutions. Woo-hoo! 🙂

  • Here are today’s notes (part 1 on Memoization and DP using the change example).
  • For Monday, read Section 6.1.
  • will try to post a quiz, but the UBC Survey system is crashing for me. If I cannot post it by noon on Saturday, I won’t, but please work the problems anyway!

    Here is the quiz:

    • The recursive solution to the weighted interval scheduling problem has to make one key decision among two or more choices by trying all the choices and picking the best. What is the decision?
      • Which among all the previous events will go before this event
      • Whether or not to include this event in the solution
      • Whether the next event’s start time is before this event’s finish time (i.e., they conflict)
    • How do we figure out that there are only n+1 total possible sub-problems in the memoized solution?
      • Because the only legal arguments to the algorithm are 0 through n.
      • Because of the algorithm’s “for” loop going from 0 up to n.
      • Because the algorithm runs in O(n) time.
  • We’re working on grading the exam and will be done soon. However, scanning/handback is likely to take until roughly class time on Wednesday.
  • There will be no quiz in next week’s class. Sorry! Too busy with exam prep/marking to get one together 🙁

Spam prevention powered by Akismet