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.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
---
2020-06-22 14:26:06 +00:00
Has not been the solution to any platinum problem, but appeared in old gold and can be used for subtasks.
2020-06-09 16:36:07 +00:00
## Tutorial
2020-06-22 14:26:06 +00:00
- 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/)
2020-06-09 16:36:07 +00:00
## Problems
2020-06-22 14:26:06 +00:00
- [CSES Hamiltonian Flights](https://cses.fi/problemset/task/1690)
- [CSES Elevator Rides](https://cses.fi/problemset/task/1653)
- [Old Gold - Moovie Moving](http://www.usaco.org/index.php?page=viewproblem2&cpid=515)
- [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)
- plus a bit of geometry