2016-12-28 23:54:51 +01:00
|
|
|
\chapter{Bit manipulation}
|
|
|
|
|
2017-02-16 22:31:26 +01:00
|
|
|
All data in computer programs is internally stored as bits,
|
2017-02-04 21:10:45 +01:00
|
|
|
i.e., as numbers 0 and 1.
|
2017-05-21 14:37:52 +02:00
|
|
|
This chapter discusses the bit representation
|
|
|
|
of integers, and shows examples
|
|
|
|
of how to use bit operations.
|
2017-01-07 12:34:28 +01:00
|
|
|
It turns out that there are many uses for
|
2017-05-21 14:37:52 +02:00
|
|
|
bit manipulation in algorithm programming.
|
2017-01-07 12:34:28 +01:00
|
|
|
|
|
|
|
\section{Bit representation}
|
|
|
|
|
|
|
|
\index{bit representation}
|
|
|
|
|
2017-05-21 14:37:52 +02:00
|
|
|
In programming, an $n$ bit integer is internally
|
|
|
|
stored as a binary number that consists of $n$ bits.
|
|
|
|
For example, the C++ type \texttt{int} is
|
|
|
|
a 32-bit type, which means that every \texttt{int}
|
|
|
|
number consists of 32 bits.
|
|
|
|
|
|
|
|
Here is the bit representation of
|
|
|
|
the \texttt{int} number 43:
|
2016-12-28 23:54:51 +01:00
|
|
|
\[00000000000000000000000000101011\]
|
2017-05-21 14:37:52 +02:00
|
|
|
The bits in the representation are indexed from right to left.
|
|
|
|
To convert a bit representation $b_k \cdots b_2 b_1 b_0$ into a number,
|
|
|
|
we can use the formula
|
|
|
|
\[b_k 2^k + \ldots + b_2 2^2 + b_1 2^1 + b_0 2^0.\]
|
|
|
|
For example,
|
|
|
|
\[1 \cdot 2^5 + 1 \cdot 2^3 + 1 \cdot 2^1 + 1 \cdot 2^0 = 43.\]
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
The bit representation of a number is either
|
|
|
|
\key{signed} or \key{unsigned}.
|
2017-02-04 21:10:45 +01:00
|
|
|
Usually a signed representation is used,
|
|
|
|
which means that both negative and positive
|
|
|
|
numbers can be represented.
|
2017-05-21 14:37:52 +02:00
|
|
|
A signed variable of $n$ bits can contain any
|
2017-03-01 21:03:44 +01:00
|
|
|
integer between $-2^{n-1}$ and $2^{n-1}-1$.
|
2017-02-04 21:10:45 +01:00
|
|
|
For example, the \texttt{int} type in C++ is
|
2017-05-21 14:37:52 +02:00
|
|
|
a signed type, so an \texttt{int} variable can contain any
|
2017-03-01 21:03:44 +01:00
|
|
|
integer between $-2^{31}$ and $2^{31}-1$.
|
2017-02-04 21:10:45 +01:00
|
|
|
|
|
|
|
The first bit in a signed representation
|
|
|
|
is the sign of the number (0 for nonnegative numbers
|
|
|
|
and 1 for negative numbers), and
|
2017-02-16 22:31:26 +01:00
|
|
|
the remaining $n-1$ bits contain the magnitude of the number.
|
2017-02-04 21:10:45 +01:00
|
|
|
\key{Two's complement} is used, which means that the
|
|
|
|
opposite number of a number is calculated by first
|
|
|
|
inverting all the bits in the number,
|
2017-01-07 12:34:28 +01:00
|
|
|
and then increasing the number by one.
|
|
|
|
|
2017-05-21 14:37:52 +02:00
|
|
|
For example, the bit representation of
|
|
|
|
the \texttt{int} number $-43$ is
|
|
|
|
\[11111111111111111111111111010101.\]
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-02-28 19:00:15 +01:00
|
|
|
In an unsigned representation, only nonnegative
|
2017-05-21 14:37:52 +02:00
|
|
|
numbers can be used, but the upper bound for the values is larger.
|
|
|
|
An unsigned variable of $n$ bits can contain any
|
2017-02-04 21:10:45 +01:00
|
|
|
integer between $0$ and $2^n-1$.
|
2017-05-21 14:37:52 +02:00
|
|
|
For example, in C++, an \texttt{unsigned int} variable
|
2017-02-04 21:10:45 +01:00
|
|
|
can contain any integer between $0$ and $2^{32}-1$.
|
|
|
|
|
2017-05-21 14:37:52 +02:00
|
|
|
There is a connection between the
|
2017-02-04 21:10:45 +01:00
|
|
|
representations:
|
2017-05-21 14:37:52 +02:00
|
|
|
a signed number $-x$ equals an unsigned number $2^n-x$.
|
2017-02-04 21:10:45 +01:00
|
|
|
For example, the following code shows that
|
|
|
|
the signed number $x=-43$ equals the unsigned
|
|
|
|
number $y=2^{32}-43$:
|
2016-12-28 23:54:51 +01:00
|
|
|
\begin{lstlisting}
|
|
|
|
int x = -43;
|
|
|
|
unsigned int y = x;
|
|
|
|
cout << x << "\n"; // -43
|
|
|
|
cout << y << "\n"; // 4294967253
|
|
|
|
\end{lstlisting}
|
2017-01-07 12:34:28 +01:00
|
|
|
|
2017-02-04 21:10:45 +01:00
|
|
|
If a number is larger than the upper bound
|
|
|
|
of the bit representation, the number will overflow.
|
|
|
|
In a signed representation,
|
2017-01-07 12:34:28 +01:00
|
|
|
the next number after $2^{n-1}-1$ is $-2^{n-1}$,
|
|
|
|
and in an unsigned representation,
|
2017-11-19 22:12:57 +01:00
|
|
|
the next number after $2^n-1$ is $0$.
|
2017-02-16 22:31:26 +01:00
|
|
|
For example, consider the following code:
|
2016-12-28 23:54:51 +01:00
|
|
|
\begin{lstlisting}
|
|
|
|
int x = 2147483647
|
|
|
|
cout << x << "\n"; // 2147483647
|
|
|
|
x++;
|
|
|
|
cout << x << "\n"; // -2147483648
|
|
|
|
\end{lstlisting}
|
|
|
|
|
2017-02-16 22:31:26 +01:00
|
|
|
Initially, the value of $x$ is $2^{31}-1$.
|
2017-05-21 14:37:52 +02:00
|
|
|
This is the largest value that can be stored
|
2017-02-16 22:31:26 +01:00
|
|
|
in an \texttt{int} variable,
|
|
|
|
so the next number after $2^{31}-1$ is $-2^{31}$.
|
|
|
|
|
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\section{Bit operations}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
|
|
|
\newcommand\XOR{\mathbin{\char`\^}}
|
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\subsubsection{And operation}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\index{and operation}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
The \key{and} operation $x$ \& $y$ produces a number
|
2017-02-04 21:10:45 +01:00
|
|
|
that has one bits in positions where both
|
|
|
|
$x$ and $y$ have one bits.
|
|
|
|
For example, $22$ \& $26$ = 18, because
|
2016-12-28 23:54:51 +01:00
|
|
|
|
|
|
|
\begin{center}
|
|
|
|
\begin{tabular}{rrr}
|
|
|
|
& 10110 & (22)\\
|
|
|
|
\& & 11010 & (26) \\
|
|
|
|
\hline
|
|
|
|
= & 10010 & (18) \\
|
|
|
|
\end{tabular}
|
|
|
|
\end{center}
|
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
Using the and operation, we can check if a number
|
|
|
|
$x$ is even because
|
|
|
|
$x$ \& $1$ = 0 if $x$ is even, and
|
|
|
|
$x$ \& $1$ = 1 if $x$ is odd.
|
2017-02-04 21:10:45 +01:00
|
|
|
More generally, $x$ is divisible by $2^k$
|
|
|
|
exactly when $x$ \& $(2^k-1)$ = 0.
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\subsubsection{Or operation}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\index{or operation}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
The \key{or} operation $x$ | $y$ produces a number
|
2017-02-04 21:10:45 +01:00
|
|
|
that has one bits in positions where at least one
|
|
|
|
of $x$ and $y$ have one bits.
|
|
|
|
For example, $22$ | $26$ = 30, because
|
2016-12-28 23:54:51 +01:00
|
|
|
|
|
|
|
\begin{center}
|
|
|
|
\begin{tabular}{rrr}
|
|
|
|
& 10110 & (22)\\
|
|
|
|
| & 11010 & (26) \\
|
|
|
|
\hline
|
|
|
|
= & 11110 & (30) \\
|
|
|
|
\end{tabular}
|
|
|
|
\end{center}
|
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\subsubsection{Xor operation}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\index{xor operation}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
The \key{xor} operation $x$ $\XOR$ $y$ produces a number
|
2017-02-04 21:10:45 +01:00
|
|
|
that has one bits in positions where exactly one
|
|
|
|
of $x$ and $y$ have one bits.
|
|
|
|
For example, $22$ $\XOR$ $26$ = 12, because
|
2016-12-28 23:54:51 +01:00
|
|
|
|
|
|
|
\begin{center}
|
|
|
|
\begin{tabular}{rrr}
|
|
|
|
& 10110 & (22)\\
|
|
|
|
$\XOR$ & 11010 & (26) \\
|
|
|
|
\hline
|
|
|
|
= & 01100 & (12) \\
|
|
|
|
\end{tabular}
|
|
|
|
\end{center}
|
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\subsubsection{Not operation}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\index{not operation}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
The \key{not} operation \textasciitilde$x$
|
|
|
|
produces a number where all the bits of $x$
|
2017-02-04 21:10:45 +01:00
|
|
|
have been inverted.
|
2017-01-07 12:34:28 +01:00
|
|
|
The formula \textasciitilde$x = -x-1$ holds,
|
|
|
|
for example, \textasciitilde$29 = -30$.
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
The result of the not operation at the bit level
|
2017-02-04 21:10:45 +01:00
|
|
|
depends on the length of the bit representation,
|
2017-05-21 14:37:52 +02:00
|
|
|
because the operation inverts all bits.
|
2017-01-07 12:34:28 +01:00
|
|
|
For example, if the numbers are 32-bit
|
|
|
|
\texttt{int} numbers, the result is as follows:
|
2016-12-28 23:54:51 +01:00
|
|
|
|
|
|
|
\begin{center}
|
|
|
|
\begin{tabular}{rrrr}
|
|
|
|
$x$ & = & 29 & 00000000000000000000000000011101 \\
|
|
|
|
\textasciitilde$x$ & = & $-30$ & 11111111111111111111111111100010 \\
|
|
|
|
\end{tabular}
|
|
|
|
\end{center}
|
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\subsubsection{Bit shifts}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-01-07 12:34:28 +01:00
|
|
|
\index{bit shift}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-02-04 21:10:45 +01:00
|
|
|
The left bit shift $x < < k$ appends $k$
|
2017-02-16 22:31:26 +01:00
|
|
|
zero bits to the number,
|
2017-01-07 12:34:28 +01:00
|
|
|
and the right bit shift $x > > k$
|
2017-02-04 21:10:45 +01:00
|
|
|
removes the $k$ last bits from the number.
|
|
|
|
For example, $14 < < 2 = 56$,
|
2017-05-21 14:37:52 +02:00
|
|
|
because $14$ and $56$ correspond to 1110 and 111000.
|
2017-02-11 20:39:03 +01:00
|
|
|
Similarly, $49 > > 3 = 6$,
|
2017-05-21 14:37:52 +02:00
|
|
|
because $49$ and $6$ correspond to 110001 and 110.
|
2017-02-04 21:10:45 +01:00
|
|
|
|
|
|
|
Note that $x < < k$
|
|
|
|
corresponds to multiplying $x$ by $2^k$,
|
|
|
|
and $x > > k$
|
2017-01-07 12:34:28 +01:00
|
|
|
corresponds to dividing $x$ by $2^k$
|
2017-02-04 21:10:45 +01:00
|
|
|
rounded down to an integer.
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-02-04 21:10:45 +01:00
|
|
|
\subsubsection{Applications}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-02-04 21:10:45 +01:00
|
|
|
A number of the form $1 < < k$ has a one bit
|
2017-02-16 22:31:26 +01:00
|
|
|
in position $k$ and all other bits are zero,
|
2017-02-04 21:10:45 +01:00
|
|
|
so we can use such numbers to access single bits of numbers.
|
2017-05-21 14:37:52 +02:00
|
|
|
In particular, the $k$th bit of a number is one
|
2017-02-04 21:10:45 +01:00
|
|
|
exactly when $x$ \& $(1 < < k)$ is not zero.
|
|
|
|
The following code prints the bit representation
|
|
|
|
of an \texttt{int} number $x$:
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-02-04 21:10:45 +01:00
|
|
|
\begin{lstlisting}
|
|
|
|
for (int i = 31; i >= 0; i--) {
|
|
|
|
if (x&(1<<i)) cout << "1";
|
|
|
|
else cout << "0";
|
|
|
|
}
|
|
|
|
\end{lstlisting}
|
|
|
|
|
|
|
|
It is also possible to modify single bits
|
2017-05-21 14:37:52 +02:00
|
|
|
of numbers using similar ideas.
|
|
|
|
For example, the formula $x$ | $(1 < < k)$
|
2017-01-07 12:34:28 +01:00
|
|
|
sets the $k$th bit of $x$ to one,
|
2017-05-21 14:37:52 +02:00
|
|
|
the formula
|
2016-12-28 23:54:51 +01:00
|
|
|
$x$ \& \textasciitilde $(1 < < k)$
|
2017-01-07 12:34:28 +01:00
|
|
|
sets the $k$th bit of $x$ to zero,
|
2017-05-21 14:37:52 +02:00
|
|
|
and the formula
|
2017-01-07 12:34:28 +01:00
|
|
|
$x$ $\XOR$ $(1 < < k)$
|
2017-02-04 21:10:45 +01:00
|
|
|
inverts the $k$th bit of $x$.
|
2017-01-07 12:34:28 +01:00
|
|
|
|
|
|
|
The formula $x$ \& $(x-1)$ sets the last
|
|
|
|
one bit of $x$ to zero,
|
|
|
|
and the formula $x$ \& $-x$ sets all the
|
|
|
|
one bits to zero, except for the last one bit.
|
2017-02-04 21:10:45 +01:00
|
|
|
The formula $x$ | $(x-1)$
|
|
|
|
inverts all the bits after the last one bit.
|
2017-01-07 12:34:28 +01:00
|
|
|
Also note that a positive number $x$ is
|
2017-05-21 14:37:52 +02:00
|
|
|
a power of two exactly when $x$ \& $(x-1) = 0$.
|
2017-01-07 12:34:28 +01:00
|
|
|
|
|
|
|
\subsubsection*{Additional functions}
|
|
|
|
|
2017-02-04 21:10:45 +01:00
|
|
|
The g++ compiler provides the following
|
|
|
|
functions for counting bits:
|
2016-12-28 23:54:51 +01:00
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
\item
|
|
|
|
$\texttt{\_\_builtin\_clz}(x)$:
|
2017-01-07 12:34:28 +01:00
|
|
|
the number of zeros at the beginning of the number
|
2016-12-28 23:54:51 +01:00
|
|
|
\item
|
|
|
|
$\texttt{\_\_builtin\_ctz}(x)$:
|
2017-01-07 12:34:28 +01:00
|
|
|
the number of zeros at the end of the number
|
2016-12-28 23:54:51 +01:00
|
|
|
\item
|
|
|
|
$\texttt{\_\_builtin\_popcount}(x)$:
|
2017-01-07 12:34:28 +01:00
|
|
|
the number of ones in the number
|
2016-12-28 23:54:51 +01:00
|
|
|
\item
|
|
|
|
$\texttt{\_\_builtin\_parity}(x)$:
|
2017-01-07 12:34:28 +01:00
|
|
|
the parity (even or odd) of the number of ones
|
2016-12-28 23:54:51 +01:00
|
|
|
\end{itemize}
|
|
|
|
\begin{samepage}
|
|
|
|
|
2017-02-04 21:10:45 +01:00
|
|
|
The functions can be used as follows:
|
2016-12-28 23:54:51 +01:00
|
|
|
\begin{lstlisting}
|
|
|
|
int x = 5328; // 00000000000000000001010011010000
|
|
|
|
cout << __builtin_clz(x) << "\n"; // 19
|
|
|
|
cout << __builtin_ctz(x) << "\n"; // 4
|
|
|
|
cout << __builtin_popcount(x) << "\n"; // 5
|
|
|
|
cout << __builtin_parity(x) << "\n"; // 1
|
|
|
|
\end{lstlisting}
|
|
|
|
\end{samepage}
|
|
|
|
|
2017-05-21 14:37:52 +02:00
|
|
|
While the above functions only support \texttt{int} numbers,
|
|
|
|
there are also \texttt{long long} versions of
|
|
|
|
the functions available with the suffix \texttt{ll}.
|
2017-01-07 12:34:28 +01:00
|
|
|
|
2017-02-04 21:10:45 +01:00
|
|
|
\section{Representing sets}
|
2017-01-07 12:34:28 +01:00
|
|
|
|
2017-05-21 14:37:52 +02:00
|
|
|
Every subset of a set
|
|
|
|
$\{0,1,2,\ldots,n-1\}$
|
|
|
|
can be represented as an $n$ bit integer
|
|
|
|
whose one bits indicate which
|
|
|
|
elements belong to the subset.
|
|
|
|
This is an efficient way to represent sets,
|
|
|
|
because every element requires only one bit of memory,
|
|
|
|
and set operations can be implemented as bit operations.
|
|
|
|
|
|
|
|
For example, since \texttt{int} is a 32-bit type,
|
|
|
|
an \texttt{int} number can represent any subset
|
|
|
|
of the set $\{0,1,2,\ldots,31\}$.
|
|
|
|
The bit representation of the set $\{1,3,4,8\}$ is
|
|
|
|
\[00000000000000000000000100011010,\]
|
|
|
|
which corresponds to the number $2^8+2^4+2^3+2^1=282$.
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-02-16 22:31:26 +01:00
|
|
|
\subsubsection{Set implementation}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-05-21 14:37:52 +02:00
|
|
|
The following code declares an \texttt{int}
|
|
|
|
variable $x$ that can contain
|
|
|
|
a subset of $\{0,1,2,\ldots,31\}$.
|
|
|
|
After this, the code adds the elements 1, 3, 4 and 8
|
|
|
|
to the set and prints the size of the set.
|
2016-12-28 23:54:51 +01:00
|
|
|
\begin{lstlisting}
|
|
|
|
int x = 0;
|
|
|
|
x |= (1<<1);
|
|
|
|
x |= (1<<3);
|
|
|
|
x |= (1<<4);
|
|
|
|
x |= (1<<8);
|
2017-05-21 14:37:52 +02:00
|
|
|
cout << __builtin_popcount(x) << "\n"; // 4
|
|
|
|
\end{lstlisting}
|
|
|
|
Then, the following code prints all
|
|
|
|
elements that belong to the set:
|
|
|
|
\begin{lstlisting}
|
2016-12-28 23:54:51 +01:00
|
|
|
for (int i = 0; i < 32; i++) {
|
|
|
|
if (x&(1<<i)) cout << i << " ";
|
|
|
|
}
|
2017-05-21 14:37:52 +02:00
|
|
|
// output: 1 3 4 8
|
2017-02-16 22:31:26 +01:00
|
|
|
\end{lstlisting}
|
|
|
|
|
|
|
|
\subsubsection{Set operations}
|
|
|
|
|
2017-05-21 14:37:52 +02:00
|
|
|
Set operations can be implemented as follows as bit operations:
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-05-21 14:37:52 +02:00
|
|
|
\begin{center}
|
|
|
|
\begin{tabular}{lll}
|
|
|
|
& set syntax & bit syntax \\
|
|
|
|
\hline
|
|
|
|
intersection & $a \cap b$ & $a$ \& $b$ \\
|
|
|
|
union & $a \cup b$ & $a$ | $b$ \\
|
|
|
|
complement & $\bar a$ & \textasciitilde$a$ \\
|
|
|
|
difference & $a \setminus b$ & $a$ \& (\textasciitilde$b$) \\
|
|
|
|
\end{tabular}
|
|
|
|
\end{center}
|
|
|
|
|
|
|
|
For example, the following code first constructs
|
|
|
|
the sets $x=\{1,3,4,8\}$ and $y=\{3,6,8,9\}$,
|
2017-05-22 22:32:52 +02:00
|
|
|
and then constructs the set $z = x \cup y = \{1,3,4,6,8,9\}$:
|
2016-12-28 23:54:51 +01:00
|
|
|
|
|
|
|
\begin{lstlisting}
|
2017-12-10 11:06:32 +01:00
|
|
|
int x = (1<<1)|(1<<3)|(1<<4)|(1<<8);
|
|
|
|
int y = (1<<3)|(1<<6)|(1<<8)|(1<<9);
|
2016-12-28 23:54:51 +01:00
|
|
|
int z = x|y;
|
2017-05-21 14:37:52 +02:00
|
|
|
cout << __builtin_popcount(z) << "\n"; // 6
|
2017-02-16 22:31:26 +01:00
|
|
|
\end{lstlisting}
|
|
|
|
|
2017-01-07 12:51:53 +01:00
|
|
|
\subsubsection{Iterating through subsets}
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-02-04 21:47:12 +01:00
|
|
|
The following code goes through
|
2017-01-07 12:51:53 +01:00
|
|
|
the subsets of $\{0,1,\ldots,n-1\}$:
|
2016-12-28 23:54:51 +01:00
|
|
|
|
|
|
|
\begin{lstlisting}
|
|
|
|
for (int b = 0; b < (1<<n); b++) {
|
2017-01-07 12:51:53 +01:00
|
|
|
// process subset b
|
2016-12-28 23:54:51 +01:00
|
|
|
}
|
|
|
|
\end{lstlisting}
|
2017-01-07 12:51:53 +01:00
|
|
|
The following code goes through
|
2017-02-04 21:47:12 +01:00
|
|
|
the subsets with exactly $k$ elements:
|
2016-12-28 23:54:51 +01:00
|
|
|
\begin{lstlisting}
|
|
|
|
for (int b = 0; b < (1<<n); b++) {
|
|
|
|
if (__builtin_popcount(b) == k) {
|
2017-01-07 12:51:53 +01:00
|
|
|
// process subset b
|
2016-12-28 23:54:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
\end{lstlisting}
|
2017-01-07 12:51:53 +01:00
|
|
|
The following code goes through the subsets
|
|
|
|
of a set $x$:
|
2016-12-28 23:54:51 +01:00
|
|
|
\begin{lstlisting}
|
|
|
|
int b = 0;
|
|
|
|
do {
|
2017-01-07 12:51:53 +01:00
|
|
|
// process subset b
|
2016-12-28 23:54:51 +01:00
|
|
|
} while (b=(b-x)&x);
|
|
|
|
\end{lstlisting}
|
|
|
|
|
2017-05-22 22:32:52 +02:00
|
|
|
\section{Bit optimizations}
|
|
|
|
|
2017-05-25 14:47:15 +02:00
|
|
|
Many algorithms can be optimized using
|
|
|
|
bit operations.
|
2017-05-22 22:32:52 +02:00
|
|
|
Such optimizations do not change the
|
|
|
|
time complexity of the algorithm,
|
|
|
|
but they may have a large impact
|
|
|
|
on the actual running time of the code.
|
2017-05-25 14:47:15 +02:00
|
|
|
In this section we discuss examples
|
2017-05-22 22:32:52 +02:00
|
|
|
of such situations.
|
|
|
|
|
|
|
|
\subsubsection{Hamming distances}
|
|
|
|
|
|
|
|
\index{Hamming distance}
|
2017-05-23 21:09:51 +02:00
|
|
|
The \key{Hamming distance}
|
|
|
|
$\texttt{hamming}(a,b)$ between two
|
2017-05-25 14:47:15 +02:00
|
|
|
strings $a$ and $b$ of equal length is
|
2017-05-22 22:32:52 +02:00
|
|
|
the number of positions where the strings differ.
|
2017-05-25 14:47:15 +02:00
|
|
|
For example,
|
|
|
|
\[\texttt{hamming}(01101,11001)=2.\]
|
2017-05-22 22:32:52 +02:00
|
|
|
|
2017-05-23 21:09:51 +02:00
|
|
|
Consider the following problem: Given
|
2017-05-22 22:32:52 +02:00
|
|
|
a list of $n$ bit strings, each of length $k$,
|
2017-05-23 21:09:51 +02:00
|
|
|
calculate the minimum Hamming distance
|
2017-05-22 22:32:52 +02:00
|
|
|
between two strings in the list.
|
2017-05-25 14:47:15 +02:00
|
|
|
For example, the answer for $[00111,01101,11110]$
|
2017-05-23 21:09:51 +02:00
|
|
|
is 2, because
|
|
|
|
\begin{itemize}[noitemsep]
|
|
|
|
\item $\texttt{hamming}(00111,01101)=2$,
|
|
|
|
\item $\texttt{hamming}(00111,11110)=3$, and
|
|
|
|
\item $\texttt{hamming}(01101,11110)=3$.
|
|
|
|
\end{itemize}
|
2017-05-22 22:32:52 +02:00
|
|
|
|
|
|
|
A straightforward way to solve the problem is
|
2017-05-25 14:47:15 +02:00
|
|
|
to go through all pairs of strings and calculate
|
2017-05-23 21:09:51 +02:00
|
|
|
their Hamming distances,
|
|
|
|
which yields an $O(n^2 k)$ time algorithm.
|
2017-05-25 14:47:15 +02:00
|
|
|
The following function can be used to
|
|
|
|
calculate distances:
|
2017-05-22 22:32:52 +02:00
|
|
|
\begin{lstlisting}
|
2017-05-23 21:09:51 +02:00
|
|
|
int hamming(string a, string b) {
|
2017-05-22 22:32:52 +02:00
|
|
|
int d = 0;
|
|
|
|
for (int i = 0; i < k; i++) {
|
|
|
|
if (a[i] != b[i]) d++;
|
|
|
|
}
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
\end{lstlisting}
|
|
|
|
|
|
|
|
However, if $k$ is small, we can optimize the code
|
|
|
|
by storing the bit strings as integers and
|
|
|
|
calculating the Hamming distances using bit operations.
|
|
|
|
In particular, if $k \le 32$, we can just store
|
|
|
|
the strings as \texttt{int} values and use the
|
|
|
|
following function to calculate distances:
|
|
|
|
\begin{lstlisting}
|
2017-05-23 21:09:51 +02:00
|
|
|
int hamming(int a, int b) {
|
2017-05-22 22:32:52 +02:00
|
|
|
return __builtin_popcount(a^b);
|
|
|
|
}
|
|
|
|
\end{lstlisting}
|
|
|
|
In the above function, the xor operation constructs
|
|
|
|
a bit string that has one bits in positions
|
|
|
|
where $a$ and $b$ differ.
|
|
|
|
Then, the number of bits is calculated using
|
|
|
|
the \texttt{\_\_builtin\_popcount} function.
|
|
|
|
|
|
|
|
To compare the implementations, we generated
|
|
|
|
a list of 10000 random bit strings of length 30.
|
|
|
|
Using the first approach, the search took
|
|
|
|
13.5 seconds, and after the bit optimization,
|
2017-05-23 21:09:51 +02:00
|
|
|
it only took 0.5 seconds.
|
2017-05-22 22:32:52 +02:00
|
|
|
Thus, the bit optimized code was almost
|
|
|
|
30 times faster than the original code.
|
|
|
|
|
2017-05-23 21:09:51 +02:00
|
|
|
\subsubsection{Counting subgrids}
|
|
|
|
|
|
|
|
As another example, consider the
|
|
|
|
following problem:
|
|
|
|
Given an $n \times n$ grid whose
|
2017-05-25 14:47:15 +02:00
|
|
|
each square is either black (1) or white (0),
|
2017-05-23 21:09:51 +02:00
|
|
|
calculate the number of subgrids
|
|
|
|
whose all corners are black.
|
|
|
|
For example, the grid
|
|
|
|
\begin{center}
|
|
|
|
\begin{tikzpicture}[scale=0.5]
|
|
|
|
\fill[black] (1,1) rectangle (2,2);
|
|
|
|
\fill[black] (1,4) rectangle (2,5);
|
|
|
|
\fill[black] (4,1) rectangle (5,2);
|
|
|
|
\fill[black] (4,4) rectangle (5,5);
|
|
|
|
\fill[black] (1,3) rectangle (2,4);
|
|
|
|
\fill[black] (2,3) rectangle (3,4);
|
|
|
|
\fill[black] (2,1) rectangle (3,2);
|
|
|
|
\fill[black] (0,2) rectangle (1,3);
|
|
|
|
\draw (0,0) grid (5,5);
|
|
|
|
\end{tikzpicture}
|
|
|
|
\end{center}
|
|
|
|
contains two such subgrids:
|
|
|
|
\begin{center}
|
|
|
|
\begin{tikzpicture}[scale=0.5]
|
|
|
|
\fill[black] (1,1) rectangle (2,2);
|
|
|
|
\fill[black] (1,4) rectangle (2,5);
|
|
|
|
\fill[black] (4,1) rectangle (5,2);
|
|
|
|
\fill[black] (4,4) rectangle (5,5);
|
|
|
|
\fill[black] (1,3) rectangle (2,4);
|
|
|
|
\fill[black] (2,3) rectangle (3,4);
|
|
|
|
\fill[black] (2,1) rectangle (3,2);
|
|
|
|
\fill[black] (0,2) rectangle (1,3);
|
|
|
|
\draw (0,0) grid (5,5);
|
|
|
|
|
|
|
|
\fill[black] (7+1,1) rectangle (7+2,2);
|
|
|
|
\fill[black] (7+1,4) rectangle (7+2,5);
|
|
|
|
\fill[black] (7+4,1) rectangle (7+5,2);
|
|
|
|
\fill[black] (7+4,4) rectangle (7+5,5);
|
|
|
|
\fill[black] (7+1,3) rectangle (7+2,4);
|
|
|
|
\fill[black] (7+2,3) rectangle (7+3,4);
|
|
|
|
\fill[black] (7+2,1) rectangle (7+3,2);
|
|
|
|
\fill[black] (7+0,2) rectangle (7+1,3);
|
|
|
|
\draw (7+0,0) grid (7+5,5);
|
|
|
|
|
|
|
|
\draw[color=red,line width=1mm] (1,1) rectangle (3,4);
|
|
|
|
\draw[color=red,line width=1mm] (7+1,1) rectangle (7+5,5);
|
|
|
|
\end{tikzpicture}
|
|
|
|
\end{center}
|
|
|
|
|
|
|
|
There is an $O(n^3)$ time algorithm for solving the problem:
|
|
|
|
go through all $O(n^2)$ pairs of rows and for each pair
|
2017-05-25 11:36:59 +02:00
|
|
|
$(a,b)$ calculate the number of columns that contain a black
|
2017-05-23 21:09:51 +02:00
|
|
|
square in both rows in $O(n)$ time.
|
2017-05-25 11:36:59 +02:00
|
|
|
The following code assumes that $\texttt{color}[y][x]$
|
2017-05-25 22:01:28 +02:00
|
|
|
denotes the color in row $y$ and column $x$:
|
2017-05-25 11:36:59 +02:00
|
|
|
\begin{lstlisting}
|
|
|
|
int count = 0;
|
|
|
|
for (int i = 0; i < n; i++) {
|
2017-05-25 14:47:15 +02:00
|
|
|
if (color[a][i] == 1 && color[b][i] == 1) count++;
|
2017-05-25 11:36:59 +02:00
|
|
|
}
|
|
|
|
\end{lstlisting}
|
|
|
|
Then, those columns
|
|
|
|
account for $\texttt{count}(\texttt{count}-1)/2$ subgrids with black corners,
|
|
|
|
because we can choose any two of them to form a subgrid.
|
2017-05-23 21:09:51 +02:00
|
|
|
|
|
|
|
To optimize this algorithm, we divide the grid into blocks
|
|
|
|
of columns such that each block consists of $N$
|
|
|
|
consecutive columns. Then, each row is stored as
|
|
|
|
a list of $N$-bit numbers that describe the colors
|
2017-05-25 11:36:59 +02:00
|
|
|
of the squares. Now we can process $N$ columns at the same time
|
|
|
|
using bit operations. In the following code,
|
|
|
|
$\texttt{color}[y][k]$ represents
|
2017-05-25 14:47:15 +02:00
|
|
|
a block of $N$ colors as bits.
|
2017-05-25 11:36:59 +02:00
|
|
|
\begin{lstlisting}
|
|
|
|
int count = 0;
|
|
|
|
for (int i = 0; i <= n/N; i++) {
|
|
|
|
count += __builtin_popcount(color[a][i]&color[b][i]);
|
|
|
|
}
|
|
|
|
\end{lstlisting}
|
|
|
|
The resulting algorithm works in $O(n^3/N)$ time.
|
2017-05-23 21:09:51 +02:00
|
|
|
|
|
|
|
We generated a random grid of size $2500 \times 2500$
|
2017-05-25 14:47:15 +02:00
|
|
|
and compared the original and bit optimized implementation.
|
2017-05-23 21:09:51 +02:00
|
|
|
While the original code took $29.6$ seconds,
|
2017-05-25 14:47:15 +02:00
|
|
|
the bit optimized version only took $3.1$ seconds
|
2017-05-23 21:09:51 +02:00
|
|
|
with $N=32$ (\texttt{int} numbers) and $1.7$ seconds
|
|
|
|
with $N=64$ (\texttt{long long} numbers).
|
2017-05-22 22:32:52 +02:00
|
|
|
|
2017-01-07 14:35:53 +01:00
|
|
|
\section{Dynamic programming}
|
|
|
|
|
2017-05-24 22:55:01 +02:00
|
|
|
Bit operations provide an efficient and convenient
|
|
|
|
way to implement dynamic programming algorithms
|
2017-05-23 23:13:02 +02:00
|
|
|
whose states contain subsets of elements,
|
|
|
|
because such states can be stored as integers.
|
2017-05-25 11:36:59 +02:00
|
|
|
Next we discuss examples of combining
|
2017-05-24 22:55:01 +02:00
|
|
|
bit operations and dynamic programming.
|
2017-05-23 23:13:02 +02:00
|
|
|
|
2017-05-25 11:36:59 +02:00
|
|
|
\subsubsection{Optimal selection}
|
2017-05-23 23:13:02 +02:00
|
|
|
|
2017-05-25 11:36:59 +02:00
|
|
|
As a first example, consider the following problem:
|
|
|
|
We are given the prices of $k$ products
|
|
|
|
over $n$ days, and we want to buy each product
|
|
|
|
exactly once.
|
|
|
|
However, we are allowed to buy at most one product
|
|
|
|
in a day.
|
|
|
|
What is the minimum total price?
|
|
|
|
For example, consider the following scenario ($k=3$ and $n=8$):
|
2017-05-23 23:13:02 +02:00
|
|
|
\begin{center}
|
|
|
|
\begin{tikzpicture}[scale=.65]
|
2017-05-25 11:36:59 +02:00
|
|
|
\draw (0, 0) grid (8,3);
|
2017-05-25 14:47:15 +02:00
|
|
|
\node at (-2.5,2.5) {product 0};
|
|
|
|
\node at (-2.5,1.5) {product 1};
|
|
|
|
\node at (-2.5,0.5) {product 2};
|
2017-05-25 11:36:59 +02:00
|
|
|
|
2017-05-25 14:47:15 +02:00
|
|
|
\foreach \x in {0,...,7}
|
|
|
|
{\node at (\x+0.5,3.5) {\x};}
|
2017-05-25 11:36:59 +02:00
|
|
|
\foreach \x/\v in {0/6,1/9,2/5,3/2,4/8,5/9,6/1,7/6}
|
|
|
|
{\node at (\x+0.5,2.5) {\v};}
|
|
|
|
\foreach \x/\v in {0/8,1/2,2/6,3/2,4/7,5/5,6/7,7/2}
|
|
|
|
{\node at (\x+0.5,1.5) {\v};}
|
|
|
|
\foreach \x/\v in {0/5,1/3,2/9,3/7,4/3,5/5,6/1,7/4}
|
|
|
|
{\node at (\x+0.5,0.5) {\v};}
|
|
|
|
\end{tikzpicture}
|
|
|
|
\end{center}
|
|
|
|
In this scenario, the minimum total price is $5$:
|
|
|
|
\begin{center}
|
|
|
|
\begin{tikzpicture}[scale=.65]
|
|
|
|
\fill [color=lightgray] (1, 1) rectangle (2, 2);
|
|
|
|
\fill [color=lightgray] (3, 2) rectangle (4, 3);
|
|
|
|
\fill [color=lightgray] (6, 0) rectangle (7, 1);
|
|
|
|
\draw (0, 0) grid (8,3);
|
2017-05-25 14:47:15 +02:00
|
|
|
\node at (-2.5,2.5) {product 0};
|
|
|
|
\node at (-2.5,1.5) {product 1};
|
|
|
|
\node at (-2.5,0.5) {product 2};
|
2017-05-25 11:36:59 +02:00
|
|
|
|
2017-05-25 14:47:15 +02:00
|
|
|
\foreach \x in {0,...,7}
|
|
|
|
{\node at (\x+0.5,3.5) {\x};}
|
2017-05-25 11:36:59 +02:00
|
|
|
\foreach \x/\v in {0/6,1/9,2/5,3/2,4/8,5/9,6/1,7/6}
|
|
|
|
{\node at (\x+0.5,2.5) {\v};}
|
|
|
|
\foreach \x/\v in {0/8,1/2,2/6,3/2,4/7,5/5,6/7,7/2}
|
|
|
|
{\node at (\x+0.5,1.5) {\v};}
|
|
|
|
\foreach \x/\v in {0/5,1/3,2/9,3/7,4/3,5/5,6/1,7/4}
|
|
|
|
{\node at (\x+0.5,0.5) {\v};}
|
2017-05-23 23:13:02 +02:00
|
|
|
\end{tikzpicture}
|
|
|
|
\end{center}
|
|
|
|
|
2017-05-25 11:36:59 +02:00
|
|
|
Let $\texttt{price}[x][d]$ denote the price of product $x$
|
2017-05-25 14:47:15 +02:00
|
|
|
on day $d$.
|
2017-05-25 11:36:59 +02:00
|
|
|
For example, in the above scenario $\texttt{price}[2][3] = 7$.
|
|
|
|
Then, let $\texttt{total}(S,d)$ denote the minimum total
|
|
|
|
price for buying a subset $S$ of products by day $d$.
|
|
|
|
Using this function, the solution to the problem is
|
|
|
|
$\texttt{total}(\{0 \ldots k-1\},n-1)$.
|
|
|
|
|
|
|
|
First, $\texttt{total}(\emptyset,d) = 0$,
|
|
|
|
because it does not cost anything to buy an empty set,
|
|
|
|
and $\texttt{total}(\{x\},0) = \texttt{price}[x][0]$,
|
|
|
|
because there is one way to buy one product on the first day.
|
|
|
|
Then, the following recurrence can be used:
|
2017-05-23 23:13:02 +02:00
|
|
|
\begin{equation*}
|
2017-05-25 14:47:15 +02:00
|
|
|
\begin{split}
|
|
|
|
\texttt{total}(S,d) = \min( & \texttt{total}(S,d-1), \\
|
|
|
|
& \min_{x \in S} (\texttt{total}(S \setminus x,d-1)+\texttt{price}[x][d]))
|
|
|
|
\end{split}
|
2017-05-23 23:13:02 +02:00
|
|
|
\end{equation*}
|
2017-05-25 11:36:59 +02:00
|
|
|
This means that we either do not buy any product on day $d$
|
|
|
|
or buy a product $x$ that belongs to $S$.
|
|
|
|
In the latter case, we remove $x$ from $S$ and add the
|
|
|
|
price of $x$ to the total price.
|
|
|
|
|
|
|
|
The next step is to calculate the values of the function
|
|
|
|
using dynamic programming.
|
|
|
|
To store the function values, we declare an array
|
|
|
|
\begin{lstlisting}
|
|
|
|
int total[1<<K][N];
|
|
|
|
\end{lstlisting}
|
|
|
|
where $K$ and $N$ are suitably large constants.
|
|
|
|
The first dimension of the array corresponds to a bit
|
|
|
|
representation of a subset.
|
2017-05-23 23:13:02 +02:00
|
|
|
|
2017-05-25 11:36:59 +02:00
|
|
|
First, the cases where $d=0$ can be processed as follows:
|
2017-05-24 22:55:01 +02:00
|
|
|
\begin{lstlisting}
|
2017-05-25 11:36:59 +02:00
|
|
|
for (int x = 0; x < k; x++) {
|
|
|
|
total[1<<x][0] = price[x][0];
|
|
|
|
}
|
2017-05-24 22:55:01 +02:00
|
|
|
\end{lstlisting}
|
2017-05-25 11:36:59 +02:00
|
|
|
Then, the recurrence translates into the following code:
|
2017-05-23 23:13:02 +02:00
|
|
|
\begin{lstlisting}
|
2017-05-25 11:36:59 +02:00
|
|
|
for (int d = 1; d < n; d++) {
|
|
|
|
for (int s = 0; s < (1<<k); s++) {
|
|
|
|
total[s][d] = total[s][d-1];
|
|
|
|
for (int x = 0; x < k; x++) {
|
|
|
|
if (s&(1<<x)) {
|
|
|
|
total[s][d] = min(total[s][d],
|
|
|
|
total[s^(1<<x)][d-1]+price[x][d]);
|
|
|
|
}
|
2017-05-23 23:13:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
\end{lstlisting}
|
2017-05-25 11:36:59 +02:00
|
|
|
The time complexity of the algorithm is $O(n 2^k k)$.
|
2017-05-23 23:13:02 +02:00
|
|
|
|
2017-01-07 14:35:53 +01:00
|
|
|
\subsubsection{From permutations to subsets}
|
|
|
|
|
|
|
|
Using dynamic programming, it is often possible
|
2017-02-16 22:31:26 +01:00
|
|
|
to change an iteration over permutations into
|
2017-05-24 22:55:01 +02:00
|
|
|
an iteration over subsets\footnote{This technique was introduced in 1962
|
2017-02-25 16:57:10 +01:00
|
|
|
by M. Held and R. M. Karp \cite{hel62}.}.
|
2017-05-25 11:36:59 +02:00
|
|
|
The benefit of this is that
|
2017-05-25 13:18:48 +02:00
|
|
|
$n!$, the number of permutations,
|
|
|
|
is much larger than $2^n$, the number of subsets.
|
2017-01-07 14:35:53 +01:00
|
|
|
For example, if $n=20$, then
|
2017-02-16 22:31:26 +01:00
|
|
|
$n! \approx 2.4 \cdot 10^{18}$ and $2^n \approx 10^6$.
|
2017-05-24 22:55:01 +02:00
|
|
|
Thus, for certain values of $n$,
|
2017-05-25 11:36:59 +02:00
|
|
|
we can efficiently go through the subsets but not through the permutations.
|
2017-01-07 14:35:53 +01:00
|
|
|
|
2017-05-22 22:32:52 +02:00
|
|
|
As an example, consider the following problem:
|
|
|
|
There is an elevator with maximum weight $x$,
|
|
|
|
and $n$ people with known weights
|
|
|
|
who want to get from the ground floor
|
|
|
|
to the top floor.
|
|
|
|
What is the minimum number of rides needed
|
|
|
|
if the people enter the elevator in an optimal order?
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-05-22 22:32:52 +02:00
|
|
|
For example, suppose that $x=10$, $n=5$
|
|
|
|
and the weights are as follows:
|
|
|
|
\begin{center}
|
|
|
|
\begin{tabular}{ll}
|
|
|
|
person & weight \\
|
|
|
|
\hline
|
2017-05-25 14:47:15 +02:00
|
|
|
0 & 2 \\
|
|
|
|
1 & 3 \\
|
|
|
|
2 & 3 \\
|
|
|
|
3 & 5 \\
|
|
|
|
4 & 6 \\
|
2017-05-22 22:32:52 +02:00
|
|
|
\end{tabular}
|
|
|
|
\end{center}
|
|
|
|
In this case, the minimum number of rides is 2.
|
2017-05-25 14:47:15 +02:00
|
|
|
One optimal order is $\{0,2,3,1,4\}$,
|
2017-05-22 22:32:52 +02:00
|
|
|
which partitions the people into two rides:
|
2017-05-25 14:47:15 +02:00
|
|
|
first $\{0,2,3\}$ (total weight 10),
|
|
|
|
and then $\{1,4\}$ (total weight 9).
|
2017-05-22 22:32:52 +02:00
|
|
|
|
|
|
|
The problem can be easily solved in $O(n! n)$ time
|
|
|
|
by testing all possible permutations of $n$ people.
|
|
|
|
However, we can use dynamic programming to get
|
|
|
|
a more efficient $O(2^n n)$ time algorithm.
|
|
|
|
The idea is to calculate for each subset of people
|
|
|
|
two values: the minimum number of rides needed and
|
|
|
|
the minimum weight of people who ride in the last group.
|
|
|
|
|
2017-05-25 13:18:48 +02:00
|
|
|
Let $\texttt{weight}[p]$ denote the weight of
|
2017-05-25 14:47:15 +02:00
|
|
|
person $p$.
|
|
|
|
We define two functions:
|
2017-05-25 13:18:48 +02:00
|
|
|
$\texttt{rides}(S)$ is the minimum number of
|
|
|
|
rides for a subset $S$,
|
|
|
|
and $\texttt{last}(S)$ is the minimum weight
|
|
|
|
of the last ride.
|
|
|
|
For example, in the above scenario
|
2017-05-25 14:47:15 +02:00
|
|
|
\[ \texttt{rides}(\{1,3,4\})=2 \hspace{10px} \textrm{and}
|
|
|
|
\hspace{10px} \texttt{last}(\{1,3,4\})=5,\]
|
|
|
|
because the optimal rides are $\{1,4\}$ and $\{3\}$,
|
2017-05-22 22:32:52 +02:00
|
|
|
and the second ride has weight 5.
|
|
|
|
Of course, our final goal is to calculate the value
|
2017-05-25 14:47:15 +02:00
|
|
|
of $\texttt{rides}(\{0 \ldots n-1\})$.
|
2017-05-22 22:32:52 +02:00
|
|
|
|
2017-05-24 22:55:01 +02:00
|
|
|
We can calculate the values
|
2017-05-22 22:32:52 +02:00
|
|
|
of the functions recursively and then apply
|
|
|
|
dynamic programming.
|
|
|
|
The idea is to go through all people
|
2017-05-25 11:36:59 +02:00
|
|
|
who belong to $S$ and optimally
|
2017-05-25 13:18:48 +02:00
|
|
|
choose the last person $p$ who enters the elevator.
|
2017-05-22 22:32:52 +02:00
|
|
|
Each such choice yields a subproblem
|
|
|
|
for a smaller subset of people.
|
2017-05-25 13:18:48 +02:00
|
|
|
If $\texttt{last}(S \setminus p)+\texttt{weight}[p] \le x$,
|
|
|
|
we can add $p$ to the last ride.
|
|
|
|
Otherwise, we have to reserve a new ride
|
|
|
|
that initially only contains $p$.
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-05-25 14:47:15 +02:00
|
|
|
To implement dynamic programming,
|
|
|
|
we declare an array
|
2017-05-24 22:55:01 +02:00
|
|
|
\begin{lstlisting}
|
2017-05-25 13:18:48 +02:00
|
|
|
pair<int,int> best[1<<N];
|
|
|
|
\end{lstlisting}
|
2017-05-25 14:47:15 +02:00
|
|
|
that contains for each subset $S$
|
2017-05-25 22:01:28 +02:00
|
|
|
a pair $(\texttt{rides}(S),\texttt{last}(S))$.
|
2018-07-03 14:11:36 +02:00
|
|
|
We set the value for an empty group as follows:
|
2017-05-25 13:18:48 +02:00
|
|
|
\begin{lstlisting}
|
2018-07-03 14:11:36 +02:00
|
|
|
best[0] = {1,0};
|
2017-05-25 13:18:48 +02:00
|
|
|
\end{lstlisting}
|
|
|
|
Then, we can fill the array as follows:
|
|
|
|
|
|
|
|
\begin{lstlisting}
|
|
|
|
for (int s = 1; s < (1<<n); s++) {
|
2018-07-03 14:11:36 +02:00
|
|
|
// initial value: n+1 rides are needed
|
|
|
|
best[s] = {n+1,0};
|
2017-05-25 13:18:48 +02:00
|
|
|
for (int p = 0; p < n; p++) {
|
|
|
|
if (s&(1<<p)) {
|
|
|
|
auto option = best[s^(1<<p)];
|
|
|
|
if (option.second+weight[p] <= x) {
|
2017-05-25 14:47:15 +02:00
|
|
|
// add p to an existing ride
|
2017-05-25 13:18:48 +02:00
|
|
|
option.second += weight[p];
|
|
|
|
} else {
|
2017-05-25 14:47:15 +02:00
|
|
|
// reserve a new ride for p
|
2017-05-25 13:18:48 +02:00
|
|
|
option.first++;
|
|
|
|
option.second = weight[p];
|
|
|
|
}
|
|
|
|
best[s] = min(best[s], option);
|
|
|
|
}
|
|
|
|
}
|
2017-05-24 22:55:01 +02:00
|
|
|
}
|
|
|
|
\end{lstlisting}
|
2017-05-25 14:47:15 +02:00
|
|
|
Note that the above loop guarantees that
|
|
|
|
for any two subsets $S_1$ and $S_2$
|
2017-05-25 13:18:48 +02:00
|
|
|
such that $S_1 \subset S_2$, we process $S_1$ before $S_2$.
|
|
|
|
Thus, the dynamic programming values are calculated in the
|
|
|
|
correct order.
|
2017-05-24 22:55:01 +02:00
|
|
|
|
2017-02-16 23:47:44 +01:00
|
|
|
\subsubsection{Counting subsets}
|
|
|
|
|
|
|
|
Our last problem in this chapter is as follows:
|
2017-05-25 22:01:28 +02:00
|
|
|
Let $X=\{0 \ldots n-1\}$, and each subset $S \subset X$
|
2017-05-25 13:18:48 +02:00
|
|
|
is assigned an integer $\texttt{value}[S]$.
|
2017-05-24 22:55:01 +02:00
|
|
|
Our task is to calculate for each $S$
|
2017-05-25 13:18:48 +02:00
|
|
|
\[\texttt{sum}(S) = \sum_{A \subset S} \texttt{value}[A],\]
|
2017-05-24 22:55:01 +02:00
|
|
|
i.e., the sum of values of subsets of $S$.
|
|
|
|
|
2017-05-25 11:36:59 +02:00
|
|
|
For example, suppose that $n=3$ and the values are as follows:
|
|
|
|
\begin{multicols}{2}
|
|
|
|
\begin{itemize}
|
2017-05-25 13:18:48 +02:00
|
|
|
\item $\texttt{value}[\emptyset] = 3$
|
|
|
|
\item $\texttt{value}[\{0\}] = 1$
|
|
|
|
\item $\texttt{value}[\{1\}] = 4$
|
|
|
|
\item $\texttt{value}[\{0,1\}] = 5$
|
|
|
|
\item $\texttt{value}[\{2\}] = 5$
|
|
|
|
\item $\texttt{value}[\{0,2\}] = 1$
|
|
|
|
\item $\texttt{value}[\{1,2\}] = 3$
|
|
|
|
\item $\texttt{value}[\{0,1,2\}] = 3$
|
2017-05-25 11:36:59 +02:00
|
|
|
\end{itemize}
|
|
|
|
\end{multicols}
|
|
|
|
In this case, for example,
|
|
|
|
\begin{equation*}
|
|
|
|
\begin{split}
|
2017-05-25 13:18:48 +02:00
|
|
|
\texttt{sum}(\{0,2\}) &= \texttt{value}[\emptyset]+\texttt{value}[\{0\}]+\texttt{value}[\{2\}]+\texttt{value}[\{0,2\}] \\
|
2017-05-25 11:36:59 +02:00
|
|
|
&= 3 + 1 + 5 + 1 = 10.
|
|
|
|
\end{split}
|
|
|
|
\end{equation*}
|
|
|
|
|
2017-05-24 22:55:01 +02:00
|
|
|
Because there are a total of $2^n$ subsets,
|
|
|
|
one possible solution is to go through all
|
|
|
|
pairs of subsets in $O(2^{2n})$ time.
|
|
|
|
However, using dynamic programming, we
|
|
|
|
can solve the problem in $O(2^n n)$ time.
|
2017-05-25 13:18:48 +02:00
|
|
|
The idea is to focus on sums where the
|
2017-05-25 14:47:15 +02:00
|
|
|
elements that may be removed from $S$ are restricted.
|
2017-05-24 22:55:01 +02:00
|
|
|
|
2017-05-25 13:18:48 +02:00
|
|
|
Let $\texttt{partial}(S,k)$ denote the sum of
|
|
|
|
values of subsets of $S$ with the restriction
|
|
|
|
that only elements $0 \ldots k$
|
|
|
|
may be removed from $S$.
|
|
|
|
For example,
|
|
|
|
\[\texttt{partial}(\{0,2\},1)=\texttt{value}[\{2\}]+\texttt{value}[\{0,2\}],\]
|
2017-12-10 11:06:32 +01:00
|
|
|
because we may only remove elements $0 \ldots 1$.
|
2017-05-25 13:18:48 +02:00
|
|
|
We can calculate values of \texttt{sum} using
|
|
|
|
values of \texttt{partial}, because
|
|
|
|
\[\texttt{sum}(S) = \texttt{partial}(S,n-1).\]
|
|
|
|
The base cases for the function are
|
|
|
|
\[\texttt{partial}(S,-1)=\texttt{value}[S],\]
|
|
|
|
because in this case no elements can be removed from $S$.
|
|
|
|
Then, in the general case we can use the following recurrence:
|
2016-12-28 23:54:51 +01:00
|
|
|
\begin{equation*}
|
2017-05-25 13:18:48 +02:00
|
|
|
\texttt{partial}(S,k) = \begin{cases}
|
|
|
|
\texttt{partial}(S,k-1) & k \notin S \\
|
|
|
|
\texttt{partial}(S,k-1) + \texttt{partial}(S \setminus \{k\},k-1) & k \in S
|
2016-12-28 23:54:51 +01:00
|
|
|
\end{cases}
|
|
|
|
\end{equation*}
|
2017-05-25 13:18:48 +02:00
|
|
|
Here we focus on the element $k$.
|
|
|
|
If $k \in S$, we have two options: we may either keep $k$ in $S$
|
|
|
|
or remove it from $S$.
|
2016-12-28 23:54:51 +01:00
|
|
|
|
2017-05-25 13:18:48 +02:00
|
|
|
There is a particularly clever way to implement the
|
|
|
|
calculation of sums. We can declare an array
|
2016-12-28 23:54:51 +01:00
|
|
|
\begin{lstlisting}
|
2017-05-25 13:18:48 +02:00
|
|
|
int sum[1<<N];
|
2016-12-28 23:54:51 +01:00
|
|
|
\end{lstlisting}
|
2017-05-25 13:18:48 +02:00
|
|
|
that will contain the sum of each subset.
|
|
|
|
The array is initialized as follows:
|
|
|
|
\begin{lstlisting}
|
|
|
|
for (int s = 0; s < (1<<n); s++) {
|
|
|
|
sum[s] = value[s];
|
|
|
|
}
|
|
|
|
\end{lstlisting}
|
|
|
|
Then, we can fill the array as follows:
|
2016-12-28 23:54:51 +01:00
|
|
|
\begin{lstlisting}
|
|
|
|
for (int k = 0; k < n; k++) {
|
2017-05-25 13:18:48 +02:00
|
|
|
for (int s = 0; s < (1<<n); s++) {
|
|
|
|
if (s&(1<<k)) sum[s] += sum[s^(1<<k)];
|
2016-12-28 23:54:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
\end{lstlisting}
|
2017-05-25 13:18:48 +02:00
|
|
|
This code calculates the values of $\texttt{partial}(S,k)$
|
|
|
|
for $k=0 \ldots n-1$ to the array \texttt{sum}.
|
|
|
|
Since $\texttt{partial}(S,k)$ is always based on
|
|
|
|
$\texttt{partial}(S,k-1)$, we can reuse the array
|
|
|
|
\texttt{sum}, which yields a very efficient implementation.
|