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/DP_Bitmasks.md

29 lines
1 KiB
Markdown
Raw Normal View History

2020-06-09 16:36:07 +00:00
---
2020-06-15 23:19:07 +00:00
id: dp-bitmasks
2020-06-09 16:36:07 +00:00
title: "Dynamic Programming on Bitmasks"
author: Michael Cao
prerequisites:
-
- Bit Operations
-
- Gold - Introduction to Dynamic Programming
---
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)
2020-06-11 00:25:30 +00:00
* [AC Matching](https://atcoder.jp/contests/dp/tasks/dp_o)
* [CF Square Subsets](https://codeforces.com/contest/895/problem/C)
* [CF Guards in the Storehouse](https://codeforces.com/problemset/problem/845/F)
* [Kattis Cat & Mice](https://open.kattis.com/problems/catandmice) [](66)
2020-06-22 01:45:24 +00:00
* plus a bit of geometry
* [CSES Hamiltonian Flights](https://cses.fi/problemset/task/1690)
* [CSES Elevator Rides](https://cses.fi/problemset/task/1653)