hdu 4925 Apple Tree

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4925

思路:直接计算坐标和,如果为奇数就种树,但要注意行或列为1的情况。

写啦两种代码:一种直接判断计算的,另一种优化计算的

code1:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cmath>

using namespace std;

int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        int n,m,i,j;
        while(scanf("%d%d",&n,&m)==2)
        {
            int sum=0;
            if(n==1&&m==1)   //特殊情况
            {
                printf("1\n");
            }
            else if(n==1||m==1)   //特殊情况
            {
                if(m==1)
                {
                    int t=n;
                    n=m;
                    m=t;
                }
                if(m%2==0)
                {
                    sum=sum+(m-1)*2;
                }
                else
                {
                    sum+=(m/2*4);
                }
                printf("%d\n",sum);
            }
            else
            {
                for(i=1;i<=n;i++)
                {
                    for(j=1;j<=m;j++)
                    {
                        if((i+j)%2==1)
                        {
                            if(i==1||i==n)
                            {
                                if(j==1||j==m)
                                {
                                    sum+=4;
                                }
                                else
                                {
                                    sum+=8;
                                }
                            }
                            else if(j==1||j==m)
                            {
                                if(i==1||i==n)
                                    sum+=4;
                                else
                                {
                                   sum+=8;
                                }

                            }
                            else //if(i!=1&&i!=n&&j!=1&&j!=m)
                            {
                                sum+=16;
                            }
                        }
                    }
                }
                printf("%d\n",sum);
            }
        }
    }
    return 0;
}

code2:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>

using namespace std;

int a[110][110];

int main()
{
    int T,n,m;
    scanf("%d",&T);
    while(T--)
    {
        int n,m,sum=0;
        scanf("%d%d",&n,&m);
        if(n==1&&m==1)
        {
            printf("1\n");
        }
        else if(n==1||m==1)
        {
            if(m==1)
            {
                int t=n;
                n=m;
                m=t;
            }
            if(m%2==0)
            {
                sum=sum+(m-1)*2;
            }
            else
            {
                sum+=(m/2*4);
            }
            printf("%d\n",sum);
        }
        else
        {
            if(n%2==1)
            {
                int t=n;
                n=m;
                m=t;
            }
            if(m%2==0)
            {
                sum+=((m-1)*8);
                //printf("BB %d\n",sum);
                sum+=((m/2-1)*(n-2)*16+(n-2)*8);
                //printf("BB %d\n",sum);
            }
            else
            {
                if(n%2==0)
                {
                    sum+=((m-1)*8);
                    sum+=((n-2)/2*(m-2)*16);
                    sum+=((n-2)*8);
                }
                else
                {
                    sum+=(m/2*16);
                    //printf("AA %d\n",sum);
                    sum+=((n-2)/2*(m-2)*16);
                    //printf("BB %d\n",sum);
                    sum+=((m-2)/2*16);
                    //printf("CC %d\n",sum);
                    sum+=((n-1)*8);
                    //printf("DD %d\n",sum);
                }
            }
            printf("%d\n",sum);

        }
    }
    return 0;
}

hdu 4925 Apple Tree,布布扣,bubuko.com

时间: 2024-10-21 19:59:44

hdu 4925 Apple Tree的相关文章

HDU 4925 Apple Tree(推理)

HDU 4925 Apple Tree 题目链接 题意:给一个m*n矩阵种树,每个位置可以选择种树或者施肥,如果种上去的位置就不能施肥,如果施肥则能让周围果树产量乘2,问最大收益 思路:推理得到肯定是果树和肥料交叉种好,类似国际象棋棋盘,黑的种,白的施肥,由于格子数不多,直接去枚举每个位置即可.如果题目格子数多的话,其实也可以推出公式一步得到答案 代码: #include <cstdio> #include <cstring> const int d[4][2] = {{0, 1}

HDU 4925 Apple Tree (瞎搞)

找到规律,各一个种一棵树,或者施肥.先施肥,先种树一样. Apple Tree Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others) Total Submission(s): 197    Accepted Submission(s): 135 Problem Description I've bought an orchard and decide to plant some

HDU 4925 Apple Tree 找呀找规律

间隔着取_(:зゝ∠)_ #include <iostream> #include <cstdio> #include <algorithm> using namespace std; typedef long long ll; int n, m; int init(int i, int j) { int cnt = 1; if(i-1 >= 1) cnt *= 2; if(i+1 <= n) cnt *= 2; if(j-1 >= 1) cnt *=

2014多校第六场 1005 || HDU 4925 Apple Tree

题目链接 题意 : 给你一块n×m的矩阵,每一个格子可以施肥或者是种苹果,种一颗苹果可以得到一个苹果,但是如果你在一个格子上施了肥,那么所有与该格子相邻(指上下左右)的有苹果树的地方最后得到的苹果是两倍,如果(i,j)有一颗苹果树,(i-1,j)与(i,j+1)施了肥,那么苹果应该是1的两倍2,2的两倍4,最后是4个苹果,问你怎么安排苹果和施肥的格子使最后得到的苹果最多. 思路 : 画了图就可以看出来,苹果和苹果,肥与肥之间不要相邻就好了,所有的苹果之间都有施肥,所有施肥的格子都被苹果隔开了才能

HDU 4925 Apple Tree(模拟题)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4925 解题报告:给你n*m的土地,现在对每一块土地有两种操作,最多只能在每块土地上进行两种操作,第一种是种苹果树操作,第二种是施肥操作,种苹果树操作可以使得该块地 长出一个苹果,施肥操作可以使得与这块土地相邻的土地的苹果产量变为原来的两倍,问可以得到的最多的苹果数量是多少? 例如一个4*4的土地,用1表示在该土地上做第一种操作,0表示在该土地上做第二种操作,可以得到最多苹果的操作如下: 0 1 0

hdu 4925 Apple Tree(贪心)

http://acm.hdu.edu.cn/showproblem.php?pid=4925 尽量让每棵苹果树周围都施肥,每次找到一个空地种上苹果树之后,使其周围的空地施肥,不再种苹果树. #include <stdio.h> #include <iostream> #include <map> #include <set> #include <list> #include <stack> #include <vector>

BUPT 2015 newbie practice #2 div2-C - 想一想-HDU 4925 Apple Tree

http://acm.hust.edu.cn/vjudge/contest/view.action?cid=102419#problem/C 题意:给你n×m的格子,每个格子你可以选择给1,或者使它上下左右(如果有)的数字乘2,你对每个格子操作的先后顺序是自由的,求所有格子数字总和的最大值. t组(小于100)数据,n和m(1到100) 题解:要使总和最大,那就每隔一个格子给1,使得每个给1的格子周围都是乘2的格子,这样它就乘了最多次2,比如3行4列 1 0 1 0 0 1 0 1 1 0 1

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 an

hdoj 4925 Apple tree 【最小割】

题目:hdoj 4925 Apple tree 来源:2014 Multi-University Training Contest 6 题意:给出一个矩阵,然后每一个格子中的数是2^(相邻格子的个数),然后要求不能取相邻的数,让取得数最大. 分析:这个题目有两种解法,一共是通解.网络流,还有一种是找规律,因为题目中数据是有规律的,所以能够找规律.非常多人是这样做的. 以下给出网络流的解法,事实上就是一个方格取数问题. 就是hdoj 1569 点击打开链接 的版本号,仅仅只是数据范围增大了.只是数