I recently read somewhere that some DP solutions like knapsack can be optimised and the overall complexity can be reduced by a factor of 32 using std::bitset in C++.
Can someone explain this optimisation and the kinds of DP on which this works ?
Optimising DP using bitset in C++
I recently read somewhere that some DP solutions like knapsack can be optimised and the overall complexity can be reduced by a factor of 32 using std::bitset in C++.
Can someone explain this optimisation and the kinds of DP on which this works ?