1269: Mondriaan‘s Dream

内存限制:128 MB 时间限制:2.000 S
评测方式:文本比较 命题人:
提交:0 解决:0

题目描述

Squares and rectangles fascinated the famous Dutch painter Piet Mondriaan. One night, after producing the drawings in his ‘toilet series‘ (where he had to use his toilet paper to draw on, for all of his paper was filled with squares and rectangles), he dreamt of filling a large rectangle with small rectangles of width 2 and height 1 in varying ways.
Expert as he was in this material, he saw at a glance that he‘ll need a computer to calculate the number of ways to fill the large rectangle whose dimensions were integer values, as well. Help him, so that his dream won‘t turn into a nightmare!

输入

The input consists of T test cases. The number of test cases (T ) is given in the first line of the input file. Each test case consists of two integer numbers: the height H and the width W of the large rectangle. Please notice that 1 <= H,W <= 11.

输出

For each test case, output the number of different ways the given rectangle can be filled with small rectangles of size 2 × 1. Assume the given large rectangle is oriented, i.e. count symmetrical tilings multiple times.

样例输入 复制

8
1 2
1 3
1 4
2 2
2 3
2 4
2 11
4 11

样例输出 复制

1
0
1
2
3
5
144
51205

提示

练习赛11-F