Rare
 0/19

Bitmask DP

Authors: Michael Cao, Siyong Huang

Contributors: Andrew Wang, Neo Wang

DP problems that require iterating over subsets.

Pro Tip

You can often use this to solve subtasks.

Bitmask DP

Focus Problem – read through this problem before continuing!

Tutorial

Resources
CPH

Elevator Rides, SOS, Hamiltonian

NW
PAPS

example - similar to Hamiltonian

CF

Hamiltonian walks

DPCC

Diagram

HE

Solution

Solution

Problems

StatusSourceProblem NameDifficultyTags
ACEasy
Show TagsBitmasks, DP
CFEasy
Show TagsBitmasks, MinCostFlow
Old GoldEasy
Show TagsBitmasks, DP
GoldEasy
Show TagsBitmasks, DP
Old GoldEasy
Show TagsBitmasks, DP
CSESNormal
Show TagsBitmasks, DP
IZhONormal
Show TagsBitmasks, DP
YSNormal
Show TagsBitmasks, DP, Meet in Middle
KattisNormal
Show TagsBinary Search, Bitmasks, DP, Geometry
IZhOHard
Show TagsBitmasks, DP
COCIHard
Show TagsBitmasks, DP, Game Theory, Sqrt
GoldHard
Show TagsBitmasks, DP
CEOIVery Hard
Show TagsBitmasks, DP
IOIVery Hard
Show TagsBitmasks, DFS, DP, Tree

Application - Bitmask over Primes

Rough Idea

In some number theory problems, it helps to represent each number were represented by a bitmask of its prime divisors. For example, the set {6,10,15}\{6, 10, 15 \} can be represented by {0b011,0b101,0b110}\{0b011, 0b101, 0b110 \} (in binary), where the bits correspond to divisibility by [2,3,5][2, 3, 5].

Then, here are some equivalent operations between masks and these integers:

  • Bitwise AND is GCD
  • Bitwise OR is LCM
  • Iterating over bits is iterating over prime divisors
  • Iterating over submasks is iterating over divisors

Choosing a set with GCD 11 is equivalent to choosing a set of bitmasks that AND to 00. For example, we can see that {6,10}\{6, 10 \} doesn't have GCD 11 because 0b011&0b101=0b00100b011 \& 0b101 = 0b001 \neq 0. On the other hand, {6,10,15}\{6, 10, 15 \} has GCD 11 because 0b011&0b101&0b110=0b000=00b011 \& 0b101 \& 0b110 = 0b000 = 0.

This section is not complete.

Any help would be appreciated! Just submit a Pull Request on Github.

Maybe this is just standard NT, but I've always thought about it as a bitmask. Also, any tutorials or more problems of this type?

Problems

StatusSourceProblem NameDifficultyTags
CFHard
Show TagsCombinatorics, DP
CFVery Hard
Show TagsBitmasks, DP, NT
CFInsane
Show TagsBinary Search, Bitmasks, NT
CFInsane
Show TagsBitmasks, Combinatorics, DP

Module Progress: