hdu 4925 Apple Tree--2014 Multi-University Training Contest 6
生活随笔
收集整理的這篇文章主要介紹了
hdu 4925 Apple Tree--2014 Multi-University Training Contest 6
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目鏈接:http://acm.hdu.edu.cn/showproblem.php?pid=4925
Apple Tree
Time Limit: 2000/1000 MS (Java/Others)????Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 188????Accepted Submission(s): 129
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
Source 2014 Multi-University Training Contest 6
Recommend hujie???|???We have carefully selected several similar problems for you:??4929?4928?4926?4924?4923?
Statistic?|?Submit?|?Discuss?|?Note
簽道題,沒啥好說的,黑白染色的方法是最優的,特判1*1的情況
轉載于:https://www.cnblogs.com/wzzkaifa/p/6901870.html
總結
以上是生活随笔為你收集整理的hdu 4925 Apple Tree--2014 Multi-University Training Contest 6的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: CentOS 7下安装NFS
- 下一篇: 图解集合8:红黑树的移除节点操作