10544 - 漫游小镇

一个正方形的镇区分为 N2 个小方块(1 <= N <= 7)。农场位于方格的左上角,集市位于左下角。贝茜穿过小镇,从左上角走到左下角,刚好经过每个方格一次。当 N=3 时,贝茜的漫游路径可能如下图所示:

| | | | | F**** | | | | | --------------- | | | | | | | | | | | ------------- | | | | | M | **** |

| | | |

写一个程序,对于给出的 N 值,计算贝茜从农场走到集市有多少种唯一的路径。

输入

行 1: 一个整数 N (1 <= N <= 7)

输出

只有一行。输出一个整数表示唯一路径的数量。

样例

输入

3

输出

2

提示

Betsy's Tour Don Piele A square township has been divided up into N2 square plots (1 <= N <= 7). The Farm is located in the upper left plot and the Market is located in the lower left plot. Betsy takes her tour of the township going from Farm to Market by walking through every plot exactly once. Shown below is one possible tour for Betsy when N=3.

| | | | | F**** | | | | | --------------- | | | | | | | | | | | ------------- | | | | | M | **** |

| | | |

Write a program that will count how many unique tours Betsy can take in going from Farm to Market for any value of N. PROGRAM NAME: betsy INPUT FORMAT Line 1: A single integer N (1 <= N <= 7)

SAMPLE INPUT (file betsy.in) 3

OUTPUT FORMAT A single line with a single integer, the number of unique tours. SAMPLE OUTPUT (file betsy.out) 2

时间限制 1 秒
内存限制 128 MB
讨论 统计
上一题 下一题