Cuber QQ got a table of infinite size. He will consider the table rows numbered from top to bottom

through

, and the columns numbered from left to right

through

. Then he'll denote the cell in row x and column y as (x, y).
Initially, there are n trucks at cell
)
respectively. The goal is that each of the trucks have to go to one of the n destinations, located at cell
%2C(2%2C0)%2C%5Ccdots%20(n-1%2C0)%2C(n%2C0))
. Cuber QQ has to make sure that there are no two trucks at the same destination. In another word, any two paths of the trucks are non-intersecting (no common points).
Each truck can go from cell (x, y) to one of two cells (x + 1, y) and (x, y - 1). And the truck can't have any chance of meeting any other trucks along the way.
Now can you help Cuber QQ to find the number of ways that trucks can achieve this goal.