This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/6_Plat/10_DP_Bitmasks.md
2020-06-09 12:36:07 -04:00

28 lines
839 B
Markdown

---
slug: /plat/dp-bitmasks
title: "Dynamic Programming on Bitmasks"
author: Michael Cao
order: 10
prerequisites:
-
- Bit Operations
-
- Gold - Introduction to Dynamic Programming
---
<!-- END DESCRIPTION -->
Note: Has not appeared on recent USACO.
## Tutorial
* CPH Chapter 10
* [Dynamic Programming Over Subsets (Codeforces)](https://codeforces.com/blog/entry/337)
* [Dynamic Programming and Bit Masking (HackerEarth)](https://www.hackerearth.com/practice/algorithms/dynamic-programming/bit-masking/tutorial/)
## Problems
* [Old Gold - Moovie Moving](http://www.usaco.org/index.php?page=viewproblem2&cpid=515)
* [Matching](https://atcoder.jp/contests/dp/tasks/dp_o)
* [Square Subsets](https://codeforces.com/contest/895/problem/C)
* [Guards in the Storehouse](https://codeforces.com/problemset/problem/845/F)