zoukankan      html  css  js  c++  java
  • POJ 1054 The Troublesome Frog



    The Troublesome Frog
    Time Limit: 5000MSMemory Limit: 100000K
    Total Submissions: 9581Accepted: 2883
    Case Time Limit: 500MS

    Description

    In Korea, the naughtiness of the cheonggaeguri, a small frog, is legendary. This is a well-deserved reputation, because the frogs jump through your rice paddy at night, flattening rice plants. In the morning, after noting which plants have been flattened, you want to identify the path of the frog which did the most damage. A frog always jumps through the paddy in a straight line, with every hop the same length: 
    POJ 1054 The Troublesome Frog - qhn999 - 码代码的猿猿 
    Your rice paddy has plants arranged on the intersection points of a grid as shown in Figure-1, and the troublesome frogs hop completely through your paddy, starting outside the paddy on one side and ending outside the paddy on the other side as shown in Figure-2: 
    POJ 1054 The Troublesome Frog - qhn999 - 码代码的猿猿 
    Many frogs can jump through the paddy, hopping from rice plant to rice plant. Every hop lands on a plant and flattens it, as in Figure-3. Note that some plants may be landed on by more than one frog during the night. Of course, you can not see the lines showing the paths of the frogs or any of their hops outside of your paddy ?for the situation in Figure-3, what you can see is shown in Figure-4: 
    POJ 1054 The Troublesome Frog - qhn999 - 码代码的猿猿 
    From Figure-4, you can reconstruct all the possible paths which the frogs may have followed across your paddy. You are only interested in frogs which have landed on at least 3 of your rice plants in their voyage through the paddy. Such a path is said to be a frog path. In this case, that means that the three paths shown in Figure-3 are frog paths (there are also other possible frog paths). The vertical path down column 1 might have been a frog path with hop length 4 except there are only 2 plants flattened so we are not interested; and the diagonal path including the plants on row 2 col. 3, row 3 col. 4, and row 6 col. 7 has three flat plants but there is no regular hop length which could have spaced the hops in this way while still landing on at least 3 plants, and hence it is not a frog path. Note also that along the line a frog path follows there may be additional flattened plants which do not need to be landed on by that path (see the plant at (2, 6) on the horizontal path across row 2 in Figure-4), and in fact some flattened plants may not be explained by any frog path at all. 

    Your task is to write a program to determine the maximum number of landings in any single frog path (where the maximum is taken over all possible frog paths). In Figure-4 the answer is 7, obtained from the frog path across row 6. 

    Input

    Your program is to read from standard input. The first line contains two integers R and C, respectively the number of rows and columns in your rice paddy, 1 <= R,C <= 5000. The second line contains the single integer N, the number of flattened rice plants, 3 <= N <= 5000. Each of the remaining N lines contains two integers, the row number (1 <= row number <= R) and the column number (1 <= column number <= C) of a flattened rice plant, separated by one blank. Each flattened plant is only listed once.

    Output

    Your program is to write to standard output. The output contains one line with a single integer, the number of plants flattened along a frog path which did the most damage if there exists at least one frog path, otherwise, 0.

    Sample Input

    6 7
    14
    2 1
    6 6
    4 2
    2 5
    2 6
    2 7
    3 4
    6 1
    6 2
    2 3
    6 3
    6 4
    6 5
    6 7

    Sample Output

    7

    Source

     

    排序,枚举两个点判断。。。。。


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

    using namespace std;

    int r,c,n;

    struct node
    {
        int x,y;
    }p[5555];

    bool cmp(node a,node b)
    {
        if(a.x!=b.x)
            return a.x<b.x;
        return a.y<b.y;
    }

    bool mp[5500][5500];

    bool inmp(node a)
    {
        if(a.x>=1&&a.x<=r&&a.y>=1&&a.y<=c) return true;
        return false;
    }
    int main()
    {
        scanf("%d%d%d",&r,&c,&n);
        for(int i=0;i<n;i++)
        {
            scanf("%d%d",&p.x,&p.y);
            mp[p.x][p.y]=true;
        }
        sort(p,p+n,cmp);
        int cnt=0;
        for(int i=0;i<n;i++)
        {
            for(int j=i+1;j<n;j++)
            {
                node a,b,c;
                a=p; b=p[j];
                int dx=b.x-a.x;
                int dy=b.y-a.y;
                c.x=a.x-dx; c.y=a.y-dy;
                if(inmp(c)) continue;
                c.x=b.x+dx; c.y=b.y+dy;
                bool flag=false;
                if(inmp(c)) flag=true;
                else continue;
                int step=3;
                while(inmp(c))
                {
                    if(mp[c.x][c.y])
                    {
                        c.x=c.x+dx; c.y=c.y+dy;
                        if(inmp(c)) step++;
                    }
                    else
                    {
                        flag=falsebreak;
                    }
                }
                if(flag)
                {
                    if(step>cnt) cnt=step;
                }
            }
        }
        printf("%d ",cnt);
        return 0;
    }
    * This source code was highlighted by YcdoiT. ( style: Codeblocks )
  • 相关阅读:
    JAVA嵌入运行Groovy脚本
    git撤销本地所有未提交的更改
    Java连接S3并上传Redis
    jython笔记
    Elasticsearch 5.2.x 使用 Head 插件连接不上集群
    elasticsearch 5.1 别的机器无法访问9200端口
    elasticsearch,http://ip:9200访问不到的解决办法
    在centos7中安装nodejs(npm )
    java标识符和关键字
    Java平台
  • 原文地址:https://www.cnblogs.com/CKboss/p/3350849.html
Copyright © 2011-2022 走看看