cphb/chapter07.tex

1046 lines
31 KiB
TeX
Raw Normal View History

2016-12-28 23:54:51 +01:00
\chapter{Dynamic programming}
2017-01-02 18:16:30 +01:00
\index{dynamic programming}
2016-12-28 23:54:51 +01:00
2017-01-02 18:16:30 +01:00
\key{Dynamic programming}
is a technique that combines the correctness
of complete search and the efficiency
of greedy algorithms.
2017-01-31 23:08:52 +01:00
Dynamic programming can be applied if the
problem can be divided into overlapping subproblems
that can be solved independently.
2016-12-28 23:54:51 +01:00
2017-01-02 18:16:30 +01:00
There are two uses for dynamic programming:
2016-12-28 23:54:51 +01:00
\begin{itemize}
\item
2017-02-13 22:16:30 +01:00
\key{Finding an optimal solution}:
2017-01-02 18:16:30 +01:00
We want to find a solution that is
as large as possible or as small as possible.
2016-12-28 23:54:51 +01:00
\item
2017-01-31 23:08:52 +01:00
\key{Counting the number of solutions}:
2017-01-02 18:16:30 +01:00
We want to calculate the total number of
possible solutions.
2016-12-28 23:54:51 +01:00
\end{itemize}
2017-01-02 18:16:30 +01:00
We will first see how dynamic programming can
2017-02-13 22:16:30 +01:00
be used to find an optimal solution,
2017-01-02 18:16:30 +01:00
and then we will use the same idea for
counting the solutions.
Understanding dynamic programming is a milestone
in every competitive programmer's career.
2017-05-18 21:00:29 +02:00
While the basic idea is simple,
the challenge is how to apply
dynamic programming to different problems.
2017-01-02 18:16:30 +01:00
This chapter introduces a set of classic problems
that are a good starting point.
\section{Coin problem}
2017-05-19 19:34:24 +02:00
We first focus on a problem that we
2017-01-31 23:08:52 +01:00
have already seen in Chapter 6:
2017-05-18 22:46:07 +02:00
Given a set of coin values $\texttt{coins} = \{c_1,c_2,\ldots,c_k\}$
and a target sum of money $n$, our task is to
form the sum $n$ using as few coins as possible.
2017-01-02 18:16:30 +01:00
2017-01-31 23:08:52 +01:00
In Chapter 6, we solved the problem using a
2017-05-19 19:34:24 +02:00
greedy algorithm that always chooses the largest
2017-01-31 23:08:52 +01:00
possible coin.
2017-01-02 18:16:30 +01:00
The greedy algorithm works, for example,
2017-02-13 22:16:30 +01:00
when the coins are the euro coins,
2017-01-02 18:16:30 +01:00
but in the general case the greedy algorithm
2017-01-31 23:08:52 +01:00
does not necessarily produce an optimal solution.
2017-01-02 18:16:30 +01:00
2017-04-22 11:34:44 +02:00
Now is time to solve the problem efficiently
2017-01-31 23:08:52 +01:00
using dynamic programming, so that the algorithm
2017-01-02 18:16:30 +01:00
works for any coin set.
The dynamic programming
algorithm is based on a recursive function
that goes through all possibilities how to
2017-01-31 23:08:52 +01:00
form the sum, like a brute force algorithm.
2017-01-02 18:16:30 +01:00
However, the dynamic programming
algorithm is efficient because
2017-02-13 22:16:30 +01:00
it uses \emph{memoization} and
calculates the answer to each subproblem only once.
2017-01-02 18:16:30 +01:00
\subsubsection{Recursive formulation}
The idea in dynamic programming is to
formulate the problem recursively so
2017-05-18 22:46:07 +02:00
that the solution to the problem can be
calculated from solutions to smaller
2017-01-02 18:16:30 +01:00
subproblems.
2017-01-31 23:08:52 +01:00
In the coin problem, a natural recursive
problem is as follows:
2017-01-02 18:16:30 +01:00
what is the smallest number of coins
2017-05-18 21:00:29 +02:00
required to form a sum $x$?
2017-01-02 18:16:30 +01:00
2017-05-18 22:46:07 +02:00
Let $\texttt{solve}(x)$
denote the minimum
2017-05-18 21:00:29 +02:00
number of coins required to form a sum $x$.
2017-01-02 18:16:30 +01:00
The values of the function depend on the
values of the coins.
2017-05-18 22:46:07 +02:00
For example, if $\texttt{coins} = \{1,3,4\}$,
2017-01-02 18:16:30 +01:00
the first values of the function are as follows:
2016-12-28 23:54:51 +01:00
\[
\begin{array}{lcl}
2017-05-18 22:46:07 +02:00
\texttt{solve}(0) & = & 0 \\
\texttt{solve}(1) & = & 1 \\
\texttt{solve}(2) & = & 2 \\
\texttt{solve}(3) & = & 1 \\
\texttt{solve}(4) & = & 1 \\
\texttt{solve}(5) & = & 2 \\
\texttt{solve}(6) & = & 2 \\
\texttt{solve}(7) & = & 2 \\
\texttt{solve}(8) & = & 2 \\
\texttt{solve}(9) & = & 3 \\
\texttt{solve}(10) & = & 3 \\
2016-12-28 23:54:51 +01:00
\end{array}
\]
2017-05-19 19:34:24 +02:00
For example, $\texttt{solve}(10)=3$,
because at least 3 coins are needed
to form the sum 10.
The optimal solution is $3+3+4=10$.
2017-01-02 18:16:30 +01:00
2017-05-18 22:46:07 +02:00
The essential property of $\texttt{solve}$ is
2017-05-18 21:00:29 +02:00
that its values can be
recursively calculated from its smaller values.
2017-05-19 19:34:24 +02:00
The idea is to focus on the \emph{first}
coin that we choose for the sum.
For example, in the above example,
the first coin can be either 1, 3 or 4.
If we first choose coin 1,
the remaining task is to form the sum 9
using the minimum number of coins,
which is a subproblem of the original problem.
Of course, the same applies to coins 3 and 4.
Thus, we can use the following recursive formula
to calculate the minimum number of coins:
\begin{equation*}
\begin{aligned}
\texttt{solve}(x) & = \min( & \texttt{solve}(x-1)+1 & , \\
& & \texttt{solve}(x-3)+1 & , \\
& & \texttt{solve}(x-4)+1 & ).
\end{aligned}
\end{equation*}
The base case of the recursion is $\texttt{solve}(0)=0$,
because no coins are needed to form an empty sum.
For example,
\[ \texttt{solve}(10) = \texttt{solve}(7)+1 = \texttt{solve}(4)+2 = \texttt{solve}(0)+3 = 3.\]
2017-05-18 22:46:07 +02:00
2017-05-19 19:34:24 +02:00
Now we are ready to a general recursive function
that calculates the minimum number of
coins needed to form a sum $x$:
2017-05-18 22:46:07 +02:00
\begin{equation*}
\texttt{solve}(x) = \begin{cases}
\infty & x < 0\\
0 & x = 0\\
\min_{c \in \texttt{coins}} \texttt{solve}(x-c)+1 & x > 0 \\
\end{cases}
\end{equation*}
First, if $x<0$, the value is $\infty$,
because it is impossible to form a negative
2017-05-19 19:34:24 +02:00
sum of money.
2017-05-18 22:46:07 +02:00
Then, if $x=0$, the value is $0$,
because no coins are needed to form an empty sum.
2017-05-19 19:34:24 +02:00
Finally, if $x>0$, the variable $c$ goes through
all possibilities how to choose the first coin
of the sum.
2016-12-28 23:54:51 +01:00
2017-01-31 23:08:52 +01:00
Once a recursive function that solves the problem
has been found,
2017-05-19 19:34:24 +02:00
we can directly implement a solution in C++
(the constant \texttt{INF} denotes infinity):
2016-12-28 23:54:51 +01:00
\begin{lstlisting}
2017-05-18 22:46:07 +02:00
int solve(int x) {
2017-04-17 13:38:33 +02:00
if (x < 0) return INF;
2017-02-27 20:29:32 +01:00
if (x == 0) return 0;
2017-05-18 21:00:29 +02:00
int best = INF;
for (auto c : coins) {
2017-05-18 22:46:07 +02:00
best = min(best, solve(x-c)+1);
2016-12-28 23:54:51 +01:00
}
2017-05-18 21:00:29 +02:00
return best;
2016-12-28 23:54:51 +01:00
}
\end{lstlisting}
2017-05-19 19:34:24 +02:00
Still, this function is not efficient,
2017-05-18 22:46:07 +02:00
because there may be an exponential number of ways
to construct the sum.
2017-05-19 19:34:24 +02:00
However, next we will see how to make the
function efficient using a technique called memoization.
2017-01-02 18:16:30 +01:00
2017-05-18 21:00:29 +02:00
\subsubsection{Using memoization}
2017-01-02 18:16:30 +01:00
\index{memoization}
2017-05-18 22:46:07 +02:00
The idea of dynamic programming is to use
\key{memoization} to efficiently calculate
values of a recursive function.
2017-05-19 19:34:24 +02:00
This means that the values of the function
are stored in an array after calculating them.
2017-01-02 18:16:30 +01:00
For each parameter, the value of the function
2017-01-31 23:08:52 +01:00
is calculated recursively only once, and after this,
the value can be directly retrieved from the array.
2017-01-02 18:16:30 +01:00
2017-05-18 21:00:29 +02:00
In this problem, we use arrays
2016-12-28 23:54:51 +01:00
\begin{lstlisting}
2017-05-18 21:00:29 +02:00
bool ready[N];
int value[N];
2016-12-28 23:54:51 +01:00
\end{lstlisting}
2017-05-18 21:00:29 +02:00
where $\texttt{ready}[x]$ indicates
2017-05-18 22:46:07 +02:00
whether the value of $\texttt{solve}(x)$ has been calculated,
2017-05-18 21:00:29 +02:00
and if it is, $\texttt{value}[x]$
contains this value.
The constant $N$ has been chosen so
that all required values fit in the arrays.
2016-12-28 23:54:51 +01:00
2017-05-19 19:34:24 +02:00
Now the function can be efficiently
2017-01-02 18:16:30 +01:00
implemented as follows:
2016-12-28 23:54:51 +01:00
\begin{lstlisting}
2017-05-18 22:46:07 +02:00
int solve(int x) {
2017-04-17 13:38:33 +02:00
if (x < 0) return INF;
2017-02-27 20:29:32 +01:00
if (x == 0) return 0;
2017-05-18 21:00:29 +02:00
if (ready[x]) return value[x];
int best = INF;
for (auto c : coins) {
2017-05-18 22:46:07 +02:00
best = min(best, solve(x-c)+1);
2016-12-28 23:54:51 +01:00
}
2017-05-18 21:00:29 +02:00
value[x] = best;
2017-05-19 19:34:24 +02:00
ready[x] = true;
2017-05-18 21:00:29 +02:00
return best;
2016-12-28 23:54:51 +01:00
}
\end{lstlisting}
2017-01-02 18:16:30 +01:00
The function handles the base cases
2017-02-27 20:29:32 +01:00
$x<0$ and $x=0$ as previously.
2017-05-18 21:00:29 +02:00
Then the function checks from
$\texttt{ready}[x]$ if
2017-05-18 22:46:07 +02:00
$\texttt{solve}(x)$ has already been stored
2017-05-18 21:00:29 +02:00
in $\texttt{value}[x]$,
and if it is, the function directly returns it.
2017-01-02 18:16:30 +01:00
Otherwise the function calculates the value
2017-05-19 19:34:24 +02:00
of $\texttt{solve}(x)$
2017-05-18 21:00:29 +02:00
recursively and stores it in $\texttt{value}[x]$.
2017-01-02 18:16:30 +01:00
2017-05-19 19:34:24 +02:00
This function works efficiently,
because the answer for each parameter $x$
2017-01-31 23:08:52 +01:00
is calculated recursively only once.
2017-05-18 22:46:07 +02:00
After a value of $\texttt{solve}(x)$ has been stored in $\texttt{value}[x]$,
2017-01-31 23:08:52 +01:00
it can be efficiently retrieved whenever the
2017-02-13 22:16:30 +01:00
function will be called again with the parameter $x$.
2017-05-19 19:34:24 +02:00
The time complexity of the algorithm is $O(nk)$,
2017-05-18 22:46:07 +02:00
where the target sum is $n$ and the number of coins is $k$.
2017-01-02 18:16:30 +01:00
2017-05-18 22:46:07 +02:00
Note that we can also \emph{iteratively}
construct the array \texttt{value} using
2017-05-18 21:00:29 +02:00
a loop that simply calculates all the values
2017-05-18 22:46:07 +02:00
of $\texttt{solve}$ for parameters $0 \ldots n$:
2016-12-28 23:54:51 +01:00
\begin{lstlisting}
2017-05-18 21:00:29 +02:00
value[0] = 0;
2017-05-18 22:46:07 +02:00
for (int x = 1; x <= n; x++) {
value[x] = INF;
2017-05-18 21:00:29 +02:00
for (auto c : coins) {
2017-05-18 22:46:07 +02:00
if (x-c >= 0) {
value[x] = min(value[x], value[x-c]+1);
2017-05-18 21:00:29 +02:00
}
2016-12-28 23:54:51 +01:00
}
}
\end{lstlisting}
2017-05-19 19:34:24 +02:00
In fact, most competitive programmers prefer this
implementation, because it is shorter and has
lower constant factors.
In the sequel, we also use iterative implementations
in our examples.
Still, it is often easier to think about
dynamic programming solutions
in terms of recursive functions.
2017-01-02 18:16:30 +01:00
2017-05-19 19:34:24 +02:00
\subsubsection{Constructing a solution}
2017-01-02 18:16:30 +01:00
2017-01-31 23:08:52 +01:00
Sometimes we are asked both to find the value
2017-05-18 21:00:29 +02:00
of an optimal solution and to give
2017-01-02 18:16:30 +01:00
an example how such a solution can be constructed.
2017-05-18 21:00:29 +02:00
In the coin problem, for example,
2017-05-19 19:34:24 +02:00
we can declare another array
2017-05-18 21:00:29 +02:00
that indicates for
each sum of money the first coin
in an optimal solution:
2017-05-19 19:34:24 +02:00
\begin{lstlisting}
int first[N];
\end{lstlisting}
Then, we can modify the algorithm as follows:
2016-12-28 23:54:51 +01:00
\begin{lstlisting}
2017-05-18 21:00:29 +02:00
value[0] = 0;
2017-05-18 22:46:07 +02:00
for (int x = 1; x <= n; x++) {
value[x] = INF;
2017-05-18 21:00:29 +02:00
for (auto c : coins) {
2017-05-19 19:34:24 +02:00
if (x-c >= 0 && value[x-c]+1 < value[x]) {
value[x] = value[x-c]+1;
2017-05-18 22:46:07 +02:00
first[x] = c;
2016-12-28 23:54:51 +01:00
}
}
}
\end{lstlisting}
2017-05-19 19:34:24 +02:00
After this, the following code can be used to
print the coins that appear in an optimal solution for
the sum $n$:
2016-12-28 23:54:51 +01:00
\begin{lstlisting}
2017-05-18 22:46:07 +02:00
while (n > 0) {
cout << first[n] << "\n";
n -= first[n];
2016-12-28 23:54:51 +01:00
}
\end{lstlisting}
2017-01-02 18:16:30 +01:00
\subsubsection{Counting the number of solutions}
2016-12-28 23:54:51 +01:00
2017-05-19 19:34:24 +02:00
Let us now consider another version
of the coin problem where our task is to
2017-05-18 22:46:07 +02:00
calculate the total number of ways
to produce a sum $x$ using the coins.
For example, if $\texttt{coins}=\{1,3,4\}$ and
2017-05-19 19:34:24 +02:00
$x=5$, there are a total of 6 ways:
2016-12-28 23:54:51 +01:00
\begin{multicols}{2}
\begin{itemize}
\item $1+1+1+1+1$
\item $1+1+3$
\item $1+3+1$
\item $3+1+1$
\item $1+4$
\item $4+1$
\end{itemize}
\end{multicols}
2017-05-18 22:46:07 +02:00
Again, we can solve the problem recursively.
Let $\texttt{solve}(x)$ denote the number of ways
we can form the sum $x$.
2017-05-19 19:34:24 +02:00
For example, if $\texttt{coins}=\{1,3,4\}$,
then $\texttt{solve}(5)=6$ and the recursive formula is
\begin{equation*}
\begin{aligned}
\texttt{solve}(x) & = & \texttt{solve}(x-1) & + \\
& & \texttt{solve}(x-3) & + \\
& & \texttt{solve}(x-4) & .
\end{aligned}
\end{equation*}
In this case, the general recursive function is as follows:
2017-05-18 22:46:07 +02:00
\begin{equation*}
\texttt{solve}(x) = \begin{cases}
0 & x < 0\\
1 & x = 0\\
\sum_{c \in \texttt{coins}} \texttt{solve}(x-c) & x > 0 \\
\end{cases}
\end{equation*}
If $x<0$, the value is 0, because there are no solutions.
If $x=0$, the value is 1, because there is only one way
to form an empty sum.
Otherwise we calculate the sum of all values
of the form $\texttt{solve}(x-c)$ where $c$ is in \texttt{coins}.
The following code constructs an array
$\texttt{count}$ such that
$\texttt{count}[x]$ equals
the value of $\texttt{solve}(x)$
for $0 \le x \le n$:
2016-12-28 23:54:51 +01:00
\begin{lstlisting}
2017-05-18 21:00:29 +02:00
count[0] = 1;
2017-05-18 22:46:07 +02:00
for (int x = 1; x <= n; i++) {
2017-05-18 21:00:29 +02:00
for (auto c : coins) {
2017-05-18 22:46:07 +02:00
if (x-c >= 0) {
count[x] += count[x-c];
2017-05-18 21:00:29 +02:00
}
2016-12-28 23:54:51 +01:00
}
}
\end{lstlisting}
2017-01-31 23:08:52 +01:00
Often the number of solutions is so large
2017-01-02 18:16:30 +01:00
that it is not required to calculate the exact number
but it is enough to give the answer modulo $m$
where, for example, $m=10^9+7$.
This can be done by changing the code so that
2017-02-13 22:16:30 +01:00
all calculations are done modulo $m$.
In the above code, it suffices to add the line
2016-12-28 23:54:51 +01:00
\begin{lstlisting}
2017-05-18 22:46:07 +02:00
count[x] %= m;
2016-12-28 23:54:51 +01:00
\end{lstlisting}
2017-01-02 18:16:30 +01:00
after the line
2016-12-28 23:54:51 +01:00
\begin{lstlisting}
2017-05-18 22:46:07 +02:00
count[x] += count[x-c];
2016-12-28 23:54:51 +01:00
\end{lstlisting}
2017-02-13 22:16:30 +01:00
Now we have discussed all basic
2017-05-18 21:00:29 +02:00
ideas of dynamic programming.
2017-01-02 18:16:30 +01:00
Since dynamic programming can be used
in many different situations,
we will now go through a set of problems
2017-05-18 21:00:29 +02:00
that show further examples about the
2017-01-31 23:08:52 +01:00
possibilities of dynamic programming.
2016-12-28 23:54:51 +01:00
2017-01-02 18:55:47 +01:00
\section{Longest increasing subsequence}
2016-12-28 23:54:51 +01:00
2017-01-02 18:55:47 +01:00
\index{longest increasing subsequence}
2016-12-28 23:54:51 +01:00
2017-05-19 21:24:07 +02:00
Our first problem is to find the
2017-01-02 18:55:47 +01:00
\key{longest increasing subsequence}
2017-05-19 21:24:07 +02:00
in an array \texttt{t} of $n$ elements.
This is a maximum-length
sequence of array elements
2017-01-31 23:08:52 +01:00
that goes from left to right,
2017-05-19 21:24:07 +02:00
and each element in the sequence is larger
2017-01-02 18:55:47 +01:00
than the previous element.
For example, in the array
2016-12-28 23:54:51 +01:00
\begin{center}
\begin{tikzpicture}[scale=0.7]
\draw (0,0) grid (8,1);
\node at (0.5,0.5) {$6$};
\node at (1.5,0.5) {$2$};
\node at (2.5,0.5) {$5$};
\node at (3.5,0.5) {$1$};
\node at (4.5,0.5) {$7$};
\node at (5.5,0.5) {$4$};
\node at (6.5,0.5) {$8$};
\node at (7.5,0.5) {$3$};
\footnotesize
2017-04-17 16:59:27 +02:00
\node at (0.5,1.4) {$0$};
\node at (1.5,1.4) {$1$};
\node at (2.5,1.4) {$2$};
\node at (3.5,1.4) {$3$};
\node at (4.5,1.4) {$4$};
\node at (5.5,1.4) {$5$};
\node at (6.5,1.4) {$6$};
\node at (7.5,1.4) {$7$};
2016-12-28 23:54:51 +01:00
\end{tikzpicture}
\end{center}
2017-01-02 18:55:47 +01:00
the longest increasing subsequence
contains 4 elements:
2016-12-28 23:54:51 +01:00
\begin{center}
\begin{tikzpicture}[scale=0.7]
\fill[color=lightgray] (1,0) rectangle (2,1);
\fill[color=lightgray] (2,0) rectangle (3,1);
\fill[color=lightgray] (4,0) rectangle (5,1);
\fill[color=lightgray] (6,0) rectangle (7,1);
\draw (0,0) grid (8,1);
\node at (0.5,0.5) {$6$};
\node at (1.5,0.5) {$2$};
\node at (2.5,0.5) {$5$};
\node at (3.5,0.5) {$1$};
\node at (4.5,0.5) {$7$};
\node at (5.5,0.5) {$4$};
\node at (6.5,0.5) {$8$};
\node at (7.5,0.5) {$3$};
\draw[thick,->] (1.5,-0.25) .. controls (1.75,-1.00) and (2.25,-1.00) .. (2.4,-0.25);
\draw[thick,->] (2.6,-0.25) .. controls (3.0,-1.00) and (4.0,-1.00) .. (4.4,-0.25);
\draw[thick,->] (4.6,-0.25) .. controls (5.0,-1.00) and (6.0,-1.00) .. (6.5,-0.25);
\footnotesize
2017-04-17 16:59:27 +02:00
\node at (0.5,1.4) {$0$};
\node at (1.5,1.4) {$1$};
\node at (2.5,1.4) {$2$};
\node at (3.5,1.4) {$3$};
\node at (4.5,1.4) {$4$};
\node at (5.5,1.4) {$5$};
\node at (6.5,1.4) {$6$};
\node at (7.5,1.4) {$7$};
2016-12-28 23:54:51 +01:00
\end{tikzpicture}
\end{center}
2017-05-19 21:24:07 +02:00
Let $\texttt{length}(k)$ denote
the length of the
2017-01-02 18:55:47 +01:00
longest increasing subsequence
2017-01-31 23:08:52 +01:00
that ends at position $k$.
2017-05-19 21:24:07 +02:00
Thus, if we calculate all values of
$\texttt{length}(k)$ where $0 \le k \le n-1$,
we will find out the length of the
longest increasing subsequence.
For example, the values of the function
for the above array are as follows:
2016-12-28 23:54:51 +01:00
\[
\begin{array}{lcl}
2017-05-19 21:24:07 +02:00
\texttt{length}(0) & = & 1 \\
\texttt{length}(1) & = & 1 \\
\texttt{length}(2) & = & 2 \\
\texttt{length}(3) & = & 1 \\
\texttt{length}(4) & = & 3 \\
\texttt{length}(5) & = & 2 \\
\texttt{length}(6) & = & 4 \\
\texttt{length}(7) & = & 2 \\
2016-12-28 23:54:51 +01:00
\end{array}
\]
2017-05-19 21:24:07 +02:00
For example, $\texttt{length}(6)=4$,
because the longest increasing subsequence
that ends at position 6 consists of 4 elements.
To calculate a value of $\texttt{length}(k)$,
we should find a position $i<k$
for which $\texttt{t}[i]<\texttt{t}[k]$
and $\texttt{length}(i)$ is as large as possible.
Then we know that
$\texttt{length}(k)=\texttt{length}(i)+1$,
because this is an optimal way to add
$\texttt{t}[k]$ to a subsequence.
However, if there is no such position $i$,
then $\texttt{length}(k)=1$,
which means that the subsequence only contains
$\texttt{t}[k]$.
Since all values of the function can be calculated
from its smaller values,
we can use dynamic programming.
In the following code, the values
of the function will be stored in an array
$\texttt{length}$.
\begin{lstlisting}
for (int k = 0; k < n; k++) {
length[k] = 1;
for (int i = 0; i < k; i++) {
if (t[i] < t[k]) {
length[k] = max(length[k],length[i]+1);
}
}
}
\end{lstlisting}
This code works in $O(n^2)$ time,
because it consists of two nested loops.
However, it is also possible to implement
the dynamic programming calculation
more efficiently in $O(n \log n)$ time.
Can you find a way to do this?
2017-01-02 18:55:47 +01:00
2017-02-20 22:23:10 +01:00
\section{Paths in a grid}
2016-12-28 23:54:51 +01:00
2017-01-02 19:14:49 +01:00
Our next problem is to find a path
from the upper-left corner to
2017-05-19 21:24:07 +02:00
the lower-right corner
of an $n \times n$ grid, such that
2017-02-13 22:16:30 +01:00
we only move down and right.
2017-05-19 21:24:07 +02:00
Each square contains a value,
2017-01-02 19:14:49 +01:00
and the path should be constructed so
2017-05-19 21:24:07 +02:00
that the sum of the values along
2017-01-02 19:14:49 +01:00
the path is as large as possible.
2017-01-31 23:08:52 +01:00
The following picture shows an optimal
path in a grid:
2016-12-28 23:54:51 +01:00
\begin{center}
\begin{tikzpicture}[scale=.65]
\begin{scope}
\fill [color=lightgray] (0, 9) rectangle (1, 8);
\fill [color=lightgray] (0, 8) rectangle (1, 7);
\fill [color=lightgray] (1, 8) rectangle (2, 7);
\fill [color=lightgray] (1, 7) rectangle (2, 6);
\fill [color=lightgray] (2, 7) rectangle (3, 6);
\fill [color=lightgray] (3, 7) rectangle (4, 6);
\fill [color=lightgray] (4, 7) rectangle (5, 6);
\fill [color=lightgray] (4, 6) rectangle (5, 5);
\fill [color=lightgray] (4, 5) rectangle (5, 4);
\draw (0, 4) grid (5, 9);
\node at (0.5,8.5) {3};
\node at (1.5,8.5) {7};
\node at (2.5,8.5) {9};
\node at (3.5,8.5) {2};
\node at (4.5,8.5) {7};
\node at (0.5,7.5) {9};
\node at (1.5,7.5) {8};
\node at (2.5,7.5) {3};
\node at (3.5,7.5) {5};
\node at (4.5,7.5) {5};
\node at (0.5,6.5) {1};
\node at (1.5,6.5) {7};
\node at (2.5,6.5) {9};
\node at (3.5,6.5) {8};
\node at (4.5,6.5) {5};
\node at (0.5,5.5) {3};
\node at (1.5,5.5) {8};
\node at (2.5,5.5) {6};
\node at (3.5,5.5) {4};
\node at (4.5,5.5) {10};
\node at (0.5,4.5) {6};
\node at (1.5,4.5) {3};
\node at (2.5,4.5) {9};
\node at (3.5,4.5) {7};
\node at (4.5,4.5) {8};
\end{scope}
\end{tikzpicture}
\end{center}
2017-05-19 21:24:07 +02:00
The sum of the values on the path is 67,
2017-01-31 23:08:52 +01:00
and this is the largest possible sum on a path
2017-01-02 19:14:49 +01:00
from the
upper-left corner to the lower-right corner.
2017-05-19 21:24:07 +02:00
Assume that the rows and columns of the
grid are numbered from 1 to $n$,
and $\texttt{value}[y][x]$ equals the value
of square $(y,x)$.
Let $\texttt{sum}(y,x)$ denote the maximum
sum on a path from the upper-left corner
to square $(y,x)$.
Now $\texttt{sum}(n,n)$ tells us
the maximum sum
2017-01-02 19:14:49 +01:00
from the upper-left corner to
the lower-right corner.
2017-05-19 21:24:07 +02:00
For example, in the above grid,
$\texttt{sum}(5,5)=67$.
We can recursively calculate the sums
as follows:
\[ \texttt{sum}(y,x) = \max(\texttt{sum}(y,x-1),\texttt{sum}(y-1,x))+\texttt{value}[y][x]\]
2017-01-02 19:14:49 +01:00
The recursive formula is based on the observation
2017-01-31 23:08:52 +01:00
that a path that ends at square $(y,x)$
2017-02-13 22:16:30 +01:00
can come either from square $(y,x-1)$
or square $(y-1,x)$:
2016-12-28 23:54:51 +01:00
\begin{center}
\begin{tikzpicture}[scale=.65]
\begin{scope}
\fill [color=lightgray] (3, 7) rectangle (4, 6);
\draw (0, 4) grid (5, 9);
\node at (2.5,6.5) {$\rightarrow$};
\node at (3.5,7.5) {$\downarrow$};
\end{scope}
\end{tikzpicture}
\end{center}
2017-05-19 21:24:07 +02:00
Thus, we select the direction that maximizes
the sum.
We assume that $\texttt{sum}(y,x)=0$
if $y=0$ or $x=0$ (because no such paths exist),
so the recursive formula also works when $y=1$ or $x=1$.
2016-12-28 23:54:51 +01:00
2017-05-19 21:24:07 +02:00
Since the function \texttt{sum} has two parameters,
the dynamic programming array also has two dimensions.
For example, we can use an array
\begin{lstlisting}
int sum[N][N];
\end{lstlisting}
and calculate the sums as follows:
\begin{lstlisting}
for (int y = 1; y <= n; y++) {
for (int x = 1; x <= n; x++) {
sum[y][x] = max(sum[y][x-1],sum[y-1][x])+value[y][x];
}
}
\end{lstlisting}
2016-12-28 23:54:51 +01:00
2017-05-19 21:24:07 +02:00
Note that it is not needed to separately handle the
cases where $y=1$ or $x=1$, because we use a
one-indexed array whose values are initially zeros.
The time complexity of the algorithm is $O(n^2)$.
2016-12-28 23:54:51 +01:00
2017-01-02 19:29:56 +01:00
\section{Knapsack}
2016-12-28 23:54:51 +01:00
2017-01-02 19:29:56 +01:00
\index{knapsack}
2016-12-28 23:54:51 +01:00
2017-05-19 22:57:15 +02:00
The term \key{knapsack} refers to problems where
a set of objects is given, and we should find
a subset of objects that has some properties.
Knapsack problems can often be solved
using dynamic programming.
In this section, we consider the following
problem:
Suppose that there are $n$
objects whose weights are $\{w_1,w_2,\ldots,w_n\}$,
and we should determine all distinct weight sums
that can be constructed using the objects.
For example, if the weights are
$\{1,3,3,5\}$, the following weight
sums are possible:
2016-12-28 23:54:51 +01:00
\begin{center}
2017-05-19 22:57:15 +02:00
\begin{tabular}{rrrrrrrrrrrrr}
0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 \\
2016-12-28 23:54:51 +01:00
\hline
2017-05-19 22:57:15 +02:00
X & X & & X & X & X & X & X & X & X & & X & X \\
2016-12-28 23:54:51 +01:00
\end{tabular}
\end{center}
2017-01-02 19:29:56 +01:00
2017-05-19 22:57:15 +02:00
In this case, all weight sums between $0 \ldots 12$
are possible, expect 2 and 10.
For example, the weight sum 7 is possible because we
can select the weights $\{1,3,3\}$.
Note that there may be multiple objects
with the same weight.
To solve the problem, we focus on subproblems
where we only use the first $k$ objects
to construct weight sums.
Let $\texttt{possible}(k,x)=\texttt{true}$ if
we can construct a weight sum $x$
using the first $k$ objects,
and otherwise $\texttt{possible}(k,x)=\texttt{false}$.
The values of the function can be recursively
calculated as follows:
\[ \texttt{possible}(k,x) = \texttt{possible}(k-1,x) \lor \texttt{possible}(k-1,x-w_k) \]
This means that we can construct a weight sum $x$
using the $k$ first objects in two ways
depending on whether we
use the weight $w_k$ in the sum or not.
(The symbol ''$\lor$'' denotes the ''or'' operation.)
In addition, $\texttt{possible}(0,0)=\texttt{true}$
and $\texttt{possible}(0,x)=\texttt{false}$ when $x \neq 0$.
The following table shows all values of the function
for the weights $\{1,3,3,5\}$ (the symbol ''X''
indicates the true values):
\begin{center}
\begin{tabular}{r|rrrrrrrrrrrrr}
& 0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & 8 & 9 & 10 & 11 & 12 \\
\hline
0 & X & \\
1 & X & X \\
2 & X & X & & X & X \\
3 & X & X & & X & X & & X & X \\
4 & X & X & & X & X & X & X & X & X & X & & X & X \\
\end{tabular}
\end{center}
After calculating those values, $\texttt{possible}(n,x)$
tells us whether we can construct a
weight sum $x$ using \emph{all} objects.
Let $W$ denote the total weight of the objects.
The following $O(nW)$ time
dynamic programming solution
corresponds to the recursive function:
\begin{lstlisting}
possible[0][0] = true;
for (int k = 1; k <= n; k++) {
for (int x = 0; x <= W; x++) {
possible[k][x] = possible[k-1][x];
if (x-w[k] >= 0) possible[k][x] |= possible[k-1][x-w[k]];
}
}
\end{lstlisting}
However, here is a better implementation that only uses
a one-dimensional array $\texttt{possible}[x]$
that indicates whether we can construct a subset with weight sum $x$.
The trick is to update the array from right to left for
each new weight:
\begin{lstlisting}
possible[0] = true;
for (int k = 1; k <= n; k++) {
for (int x = W; x >= 0; x--) {
if (possible[x]) possible[x+w[k]] = true;
}
}
\end{lstlisting}
In some other knapsack problems, objects have both weights and values,
and we should find a maximum-value subset whose weight is restricted.
We can solve such problems using similar ideas as we used here.
2016-12-28 23:54:51 +01:00
2017-01-02 23:46:18 +01:00
\section{Edit distance}
\index{edit distance}
\index{Levenshtein distance}
2017-02-25 15:51:29 +01:00
The \key{edit distance} or \key{Levenshtein distance}\footnote{The distance
2017-02-27 20:29:32 +01:00
is named after V. I. Levenshtein who studied it in connection with binary codes \cite{lev66}.}
2017-01-31 23:08:52 +01:00
is the minimum number of editing operations
2017-02-13 22:16:30 +01:00
needed to transform a string
into another string.
2017-01-02 23:46:18 +01:00
The allowed editing operations are as follows:
2016-12-28 23:54:51 +01:00
\begin{itemize}
2017-01-02 23:46:18 +01:00
\item insert a character (e.g. \texttt{ABC} $\rightarrow$ \texttt{ABCA})
\item remove a character (e.g. \texttt{ABC} $\rightarrow$ \texttt{AC})
\item change a character (e.g. \texttt{ABC} $\rightarrow$ \texttt{ADC})
2016-12-28 23:54:51 +01:00
\end{itemize}
2017-01-02 23:46:18 +01:00
For example, the edit distance between
2017-02-13 22:16:30 +01:00
\texttt{LOVE} and \texttt{MOVIE} is 2,
because we can first perform the operation
2017-01-02 23:46:18 +01:00
\texttt{LOVE} $\rightarrow$ \texttt{MOVE}
2017-02-13 22:16:30 +01:00
(change) and then the operation
2017-01-02 23:46:18 +01:00
\texttt{MOVE} $\rightarrow$ \texttt{MOVIE}
(insertion).
2017-01-31 23:08:52 +01:00
This is the smallest possible number of operations,
because it is clear that it is not possible
to use only one operation.
2017-01-02 23:46:18 +01:00
Suppose we are given strings
2017-01-31 23:08:52 +01:00
\texttt{x} and \texttt{y} that contain
$n$ and $m$ characters, respectively,
and we wish to calculate the edit distance
2017-01-02 23:46:18 +01:00
between them.
2017-02-13 22:16:30 +01:00
This can be done using
2017-01-02 23:46:18 +01:00
dynamic programming in $O(nm)$ time.
Let $f(a,b)$ denote the edit distance
between the first $a$ characters of \texttt{x}
and the first $b$ characters of \texttt{y}.
Using this function, the edit distance between
2017-01-31 23:08:52 +01:00
\texttt{x} and \texttt{y} equals $f(n,m)$.
2017-01-02 23:46:18 +01:00
The base cases for the function are
2016-12-28 23:54:51 +01:00
\[
\begin{array}{lcl}
f(0,b) & = & b \\
f(a,0) & = & a \\
\end{array}
\]
2017-01-02 23:46:18 +01:00
and in the general case the formula is
2016-12-28 23:54:51 +01:00
\[ f(a,b) = \min(f(a,b-1)+1,f(a-1,b)+1,f(a-1,b-1)+c),\]
2017-01-02 23:46:18 +01:00
where $c=0$ if the $a$th character of \texttt{x}
equals the $b$th character of \texttt{y},
and otherwise $c=1$.
2017-02-13 22:16:30 +01:00
The formula considers all possible ways to shorten the strings:
2016-12-28 23:54:51 +01:00
\begin{itemize}
2017-01-02 23:46:18 +01:00
\item $f(a,b-1)$ means that a character is inserted to \texttt{x}
2017-01-31 23:08:52 +01:00
\item $f(a-1,b)$ means that a character is removed from \texttt{x}
2017-01-02 23:46:18 +01:00
\item $f(a-1,b-1)$ means that \texttt{x} and \texttt{y} contain
the same character ($c=0$),
or a character in \texttt{x} is transformed into
a character in \texttt{y} ($c=1$)
2016-12-28 23:54:51 +01:00
\end{itemize}
2017-01-02 23:46:18 +01:00
The following table shows the values of $f$
in the example case:
2016-12-28 23:54:51 +01:00
\begin{center}
\begin{tikzpicture}[scale=.65]
\begin{scope}
%\fill [color=lightgray] (5, -3) rectangle (6, -4);
\draw (1, -1) grid (7, -6);
2017-01-02 23:46:18 +01:00
\node at (0.5,-2.5) {\texttt{L}};
\node at (0.5,-3.5) {\texttt{O}};
\node at (0.5,-4.5) {\texttt{V}};
\node at (0.5,-5.5) {\texttt{E}};
2016-12-28 23:54:51 +01:00
2017-01-02 23:46:18 +01:00
\node at (2.5,-0.5) {\texttt{M}};
\node at (3.5,-0.5) {\texttt{O}};
\node at (4.5,-0.5) {\texttt{V}};
\node at (5.5,-0.5) {\texttt{I}};
\node at (6.5,-0.5) {\texttt{E}};
2016-12-28 23:54:51 +01:00
\node at (1.5,-1.5) {$0$};
\node at (1.5,-2.5) {$1$};
\node at (1.5,-3.5) {$2$};
\node at (1.5,-4.5) {$3$};
\node at (1.5,-5.5) {$4$};
\node at (2.5,-1.5) {$1$};
\node at (2.5,-2.5) {$1$};
\node at (2.5,-3.5) {$2$};
\node at (2.5,-4.5) {$3$};
\node at (2.5,-5.5) {$4$};
\node at (3.5,-1.5) {$2$};
\node at (3.5,-2.5) {$2$};
\node at (3.5,-3.5) {$1$};
\node at (3.5,-4.5) {$2$};
\node at (3.5,-5.5) {$3$};
\node at (4.5,-1.5) {$3$};
\node at (4.5,-2.5) {$3$};
\node at (4.5,-3.5) {$2$};
\node at (4.5,-4.5) {$1$};
\node at (4.5,-5.5) {$2$};
\node at (5.5,-1.5) {$4$};
\node at (5.5,-2.5) {$4$};
\node at (5.5,-3.5) {$3$};
\node at (5.5,-4.5) {$2$};
\node at (5.5,-5.5) {$2$};
\node at (6.5,-1.5) {$5$};
\node at (6.5,-2.5) {$5$};
\node at (6.5,-3.5) {$4$};
\node at (6.5,-4.5) {$3$};
\node at (6.5,-5.5) {$2$};
\end{scope}
\end{tikzpicture}
\end{center}
2017-01-02 23:46:18 +01:00
The lower-right corner of the table
2017-02-13 22:16:30 +01:00
tells us that the edit distance between
2017-01-02 23:46:18 +01:00
\texttt{LOVE} and \texttt{MOVIE} is 2.
The table also shows how to construct
the shortest sequence of editing operations.
In this case the path is as follows:
2016-12-28 23:54:51 +01:00
\begin{center}
\begin{tikzpicture}[scale=.65]
\begin{scope}
\draw (1, -1) grid (7, -6);
2017-01-02 23:46:18 +01:00
\node at (0.5,-2.5) {\texttt{L}};
\node at (0.5,-3.5) {\texttt{O}};
\node at (0.5,-4.5) {\texttt{V}};
\node at (0.5,-5.5) {\texttt{E}};
\node at (2.5,-0.5) {\texttt{M}};
\node at (3.5,-0.5) {\texttt{O}};
\node at (4.5,-0.5) {\texttt{V}};
\node at (5.5,-0.5) {\texttt{I}};
\node at (6.5,-0.5) {\texttt{E}};
2016-12-28 23:54:51 +01:00
\node at (1.5,-1.5) {$0$};
\node at (1.5,-2.5) {$1$};
\node at (1.5,-3.5) {$2$};
\node at (1.5,-4.5) {$3$};
\node at (1.5,-5.5) {$4$};
\node at (2.5,-1.5) {$1$};
\node at (2.5,-2.5) {$1$};
\node at (2.5,-3.5) {$2$};
\node at (2.5,-4.5) {$3$};
\node at (2.5,-5.5) {$4$};
\node at (3.5,-1.5) {$2$};
\node at (3.5,-2.5) {$2$};
\node at (3.5,-3.5) {$1$};
\node at (3.5,-4.5) {$2$};
\node at (3.5,-5.5) {$3$};
\node at (4.5,-1.5) {$3$};
\node at (4.5,-2.5) {$3$};
\node at (4.5,-3.5) {$2$};
\node at (4.5,-4.5) {$1$};
\node at (4.5,-5.5) {$2$};
\node at (5.5,-1.5) {$4$};
\node at (5.5,-2.5) {$4$};
\node at (5.5,-3.5) {$3$};
\node at (5.5,-4.5) {$2$};
\node at (5.5,-5.5) {$2$};
\node at (6.5,-1.5) {$5$};
\node at (6.5,-2.5) {$5$};
\node at (6.5,-3.5) {$4$};
\node at (6.5,-4.5) {$3$};
\node at (6.5,-5.5) {$2$};
\path[draw=red,thick,-,line width=2pt] (6.5,-5.5) -- (5.5,-4.5);
\path[draw=red,thick,-,line width=2pt] (5.5,-4.5) -- (4.5,-4.5);
\path[draw=red,thick,->,line width=2pt] (4.5,-4.5) -- (1.5,-1.5);
\end{scope}
\end{tikzpicture}
\end{center}
2017-01-03 00:07:43 +01:00
The last characters of \texttt{LOVE} and \texttt{MOVIE}
are equal, so the edit distance between them
equals the edit distance between \texttt{LOV} and \texttt{MOVI}.
We can use one editing operation to remove the
character \texttt{I} from \texttt{MOVI}.
Thus, the edit distance is one larger than
the edit distance between \texttt{LOV} and \texttt{MOV}, etc.
2017-01-03 01:32:39 +01:00
\section{Counting tilings}
2017-01-03 00:07:43 +01:00
2017-02-13 22:16:30 +01:00
Sometimes the states of a dynamic programming solution
2017-01-31 23:08:52 +01:00
are more complex than fixed combinations of numbers.
2017-01-03 00:07:43 +01:00
As an example,
2017-01-31 23:08:52 +01:00
we consider the problem of calculating
the number of distinct ways to
2017-01-03 00:07:43 +01:00
fill an $n \times m$ grid using
$1 \times 2$ and $2 \times 1$ size tiles.
For example, one valid solution
for the $4 \times 7$ grid is
2016-12-28 23:54:51 +01:00
\begin{center}
\begin{tikzpicture}[scale=.65]
\draw (0,0) grid (7,4);
\draw[fill=gray] (0+0.2,0+0.2) rectangle (2-0.2,1-0.2);
\draw[fill=gray] (2+0.2,0+0.2) rectangle (4-0.2,1-0.2);
\draw[fill=gray] (4+0.2,0+0.2) rectangle (6-0.2,1-0.2);
\draw[fill=gray] (0+0.2,1+0.2) rectangle (2-0.2,2-0.2);
\draw[fill=gray] (2+0.2,1+0.2) rectangle (4-0.2,2-0.2);
\draw[fill=gray] (1+0.2,2+0.2) rectangle (3-0.2,3-0.2);
\draw[fill=gray] (1+0.2,3+0.2) rectangle (3-0.2,4-0.2);
\draw[fill=gray] (4+0.2,3+0.2) rectangle (6-0.2,4-0.2);
\draw[fill=gray] (0+0.2,2+0.2) rectangle (1-0.2,4-0.2);
\draw[fill=gray] (3+0.2,2+0.2) rectangle (4-0.2,4-0.2);
\draw[fill=gray] (6+0.2,2+0.2) rectangle (7-0.2,4-0.2);
\draw[fill=gray] (4+0.2,1+0.2) rectangle (5-0.2,3-0.2);
\draw[fill=gray] (5+0.2,1+0.2) rectangle (6-0.2,3-0.2);
\draw[fill=gray] (6+0.2,0+0.2) rectangle (7-0.2,2-0.2);
\end{tikzpicture}
\end{center}
2017-01-03 00:07:43 +01:00
and the total number of solutions is 781.
The problem can be solved using dynamic programming
by going through the grid row by row.
Each row in a solution can be represented as a
string that contains $m$ characters from the set
$\{\sqcap, \sqcup, \sqsubset, \sqsupset \}$.
For example, the above solution consists of four rows
that correspond to the following strings:
2016-12-28 23:54:51 +01:00
\begin{itemize}
\item
2017-01-03 00:07:43 +01:00
$\sqcap \sqsubset \sqsupset \sqcap \sqsubset \sqsupset \sqcap$
2016-12-28 23:54:51 +01:00
\item
2017-01-03 00:07:43 +01:00
$\sqcup \sqsubset \sqsupset \sqcup \sqcap \sqcap \sqcup$
2016-12-28 23:54:51 +01:00
\item
2017-01-03 00:07:43 +01:00
$\sqsubset \sqsupset \sqsubset \sqsupset \sqcup \sqcup \sqcap$
2016-12-28 23:54:51 +01:00
\item
2017-01-03 00:07:43 +01:00
$\sqsubset \sqsupset \sqsubset \sqsupset \sqsubset \sqsupset \sqcup$
2016-12-28 23:54:51 +01:00
\end{itemize}
2017-01-03 00:07:43 +01:00
Let $f(k,x)$ denote the number of ways to
2017-01-31 23:08:52 +01:00
construct a solution for rows $1 \ldots k$
2017-01-03 00:07:43 +01:00
in the grid so that string $x$ corresponds to row $k$.
2017-02-27 20:29:32 +01:00
It is possible to use dynamic programming here,
2017-01-03 00:07:43 +01:00
because the state of a row is constrained
2017-01-31 23:08:52 +01:00
only by the state of the previous row.
2017-01-03 00:07:43 +01:00
2017-01-31 23:08:52 +01:00
A solution is valid if row $1$ does not contain
2017-01-03 00:07:43 +01:00
the character $\sqcup$,
2017-01-31 23:08:52 +01:00
row $n$ does not contain the character $\sqcap$,
and all consecutive rows are \emph{compatible}.
2017-01-03 00:07:43 +01:00
For example, the rows
$\sqcup \sqsubset \sqsupset \sqcup \sqcap \sqcap \sqcup$ and
2016-12-28 23:54:51 +01:00
$\sqsubset \sqsupset \sqsubset \sqsupset \sqcup \sqcup \sqcap$
2017-01-03 00:07:43 +01:00
are compatible, while the rows
$\sqcap \sqsubset \sqsupset \sqcap \sqsubset \sqsupset \sqcap$ and
2016-12-28 23:54:51 +01:00
$\sqsubset \sqsupset \sqsubset \sqsupset \sqsubset \sqsupset \sqcup$
2017-01-03 00:07:43 +01:00
are not compatible.
Since a row consists of $m$ characters and there are
2017-01-31 23:08:52 +01:00
four choices for each character, the number of distinct
2017-01-03 00:07:43 +01:00
rows is at most $4^m$.
Thus, the time complexity of the solution is
2017-01-31 23:08:52 +01:00
$O(n 4^{2m})$ because we can go through the
2017-01-03 00:07:43 +01:00
$O(4^m)$ possible states for each row,
and for each state, there are $O(4^m)$
possible states for the previous row.
2017-01-31 23:08:52 +01:00
In practice, it is a good idea to rotate the grid
so that the shorter side has length $m$,
2017-01-03 00:07:43 +01:00
because the factor $4^{2m}$ dominates the time complexity.
It is possible to make the solution more efficient
2017-02-27 20:29:32 +01:00
by using a more compact representation for the rows.
2017-02-13 22:16:30 +01:00
It turns out that it is sufficient to know which
columns of the previous row contain the upper square
2017-01-03 00:07:43 +01:00
of a vertical tile.
Thus, we can represent a row using only characters
2017-01-31 23:08:52 +01:00
$\sqcap$ and $\Box$, where $\Box$ is a combination
2017-01-03 00:07:43 +01:00
of characters
$\sqcup$, $\sqsubset$ and $\sqsupset$.
2017-01-31 23:08:52 +01:00
Using this representation, there are only
$2^m$ distinct rows and the time complexity is
2017-01-03 00:07:43 +01:00
$O(n 2^{2m})$.
As a final note, there is also a surprising direct formula
2017-04-18 19:31:08 +02:00
for calculating the number of tilings\footnote{Surprisingly,
this formula was discovered in 1961 by two research teams \cite{kas61,tem61}
that worked independently.}:
2017-01-31 23:08:52 +01:00
\[ \prod_{a=1}^{\lceil n/2 \rceil} \prod_{b=1}^{\lceil m/2 \rceil} 4 \cdot (\cos^2 \frac{\pi a}{n + 1} + \cos^2 \frac{\pi b}{m+1})\]
This formula is very efficient, because it calculates
the number of tilings in $O(nm)$ time,
2017-01-03 00:07:43 +01:00
but since the answer is a product of real numbers,
a practical problem in using the formula is
how to store the intermediate results accurately.
2016-12-28 23:54:51 +01:00