编程介的小学生
2017-09-14 09:17Apple Tree
Problem Description
I’ve bought an orchard and decide to plant some apple trees on it. The orchard seems like an N * M two-dimensional map. In each grid, I can either plant an apple tree to get one apple or fertilize the soil to speed up its neighbors’ production. When a grid is fertilized, the grid itself doesn’t produce apples but the number of apples of its four neighbor trees will double (if it exists). For example, an apple tree locates on (x, y), and (x - 1, y), (x, y - 1) are fertilized while (x + 1, y), (x, y + 1) are not, then I can get four apples from (x, y). Now, I am wondering how many apples I can get at most in the whole orchard?
Input
The input contains multiple test cases. The number of test cases T (T<=100) occurs in the first line of input.
For each test case, two integers N, M (1<=N, M<=100) are given in a line, which denote the size of the map.
Output
For each test case, you should output the maximum number of apples I can obtain.
Sample Input
2
2 2
3 3
Sample Output
8
32
- 点赞
- 回答
- 收藏
- 复制链接分享
1条回答
为你推荐
- 解析参数列表中用逗号分隔的逗号分隔值
- regex
- 1个回答
- 使用Go 1.5 buildmode = c-archive与从C链接的net / http.Server
- ld
- c
- linker
- 1个回答
- 组织这种结构的最佳方式?
- database-design
- mysql
- php
- 3个回答
- 如何检查项目数组是否仅包含此项目?
- laravel
- arrays
- php
- 5个回答
- Banana
- as
- matrix
- 1个回答