hdu 4739 Zhuge Liang's Mines (简单dfs)

Zhuge Liang's Mines

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 236    Accepted Submission(s): 107


Problem Description
In the ancient three kingdom period, Zhuge Liang was the most famous and smartest military leader. His enemy was Shima Yi, who always looked stupid when fighting against Zhuge Liang. But it was Shima Yi who laughed to the end.

Once, Zhuge Liang sent the arrogant Ma Shu to defend Jie Ting, a very important fortress. Because Ma Shu is the son of Zhuge Liang's good friend Ma liang, even Liu Bei, the Ex. king, had warned Zhuge Liang that Ma Shu was always bragging and couldn't be used, Zhuge Liang wouldn't listen. Shima Yi defeated Ma Shu and took Jie Ting. Zhuge Liang had to kill Ma Shu and retreated. To avoid Shima Yi's chasing, Zhuge Liang put some mines on the only road. Zhuge Liang deployed the mines in a Bagua pattern which made the mines very hard to remove. If you try to remove a single mine, no matter what you do ,it will explode. Ma Shu's son betrayed Zhuge Liang , he found Shima Yi, and told Shima Yi the only way to remove the mines: If you remove four mines which form the four vertexes of a square at the same time, the removal will be success. In fact, Shima Yi was not stupid. He removed as many mines as possible. Can you figure out how many mines he removed at that time?

The mine field can be considered as a the Cartesian coordinate system. Every mine had its coordinates. To simplify the problem, please only consider the squares which are parallel to the coordinate axes.
 
Input
There are no more than 15 test cases.
In each test case:

The first line is an integer N, meaning that there are N mines( 0 < N <= 20 ).

Next N lines describes the coordinates of N mines. Each line contains two integers X and Y, meaning that there is a mine at position (X,Y). ( 0 <= X,Y <= 100)

The input ends with N = -1.
 
Output
For each test case ,print the maximum number of mines Shima Yi removed in a line.
 
Sample Input
3 1 1 0 0 2 2 8 0 0 1 0 2 0 0 1 1 1 2 1 10 1 10 0 -1
 
Sample Output
0 4
 
Source


思路:
将点按照y从小到大,x从小到大排序后,从前往后dfs就够了。

注意:
要考虑重点的情况。

代码:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <string>
#include <map>
#include <stack>
#include <vector>
#include <set>
#include <queue>
#define maxn 105
using namespace std;

int n,m,ans;
bool mp[maxn][maxn];
int vis[maxn][maxn];
struct Node
{
    int x,y;
} pp[21];

bool cmp(Node xx,Node yy)
{
    if(xx.y!=yy.y) return xx.y<yy.y;
    if(xx.x!=yy.x) return xx.x<yy.x;
}
void dfs(int pos,int val)
{
    if(ans<val) ans=val;
    if(pos>n||val+n-pos+1<=ans) return ;
    int i,j,x,y,tx,ty,edge;
    x=pp[pos].x;
    y=pp[pos].y;
    if(vis[x][y]<=0) dfs(pos+1,val);
    else
    {
        for(i=pos+1; i<=n; i++)
        {
            tx=pp[i].x;
            ty=pp[i].y;
            if(ty>y) break ;
            edge=tx-x;
            if(edge==0) continue ;
            if(mp[x][y+edge]&&mp[tx][y+edge])
            {
                if(vis[x][y]<=0||vis[tx][ty]<=0||vis[x][y+edge]<=0||vis[tx][y+edge]<=0) continue ;
                vis[x][y]--,vis[tx][ty]--;
                vis[x][y+edge]--,vis[tx][y+edge]--;
                dfs(pos+1,val+4);
                vis[x][y]++,vis[tx][ty]++;
                vis[x][y+edge]++,vis[tx][y+edge]++;
            }
        }
        dfs(pos+1,val);
    }
}
int main()
{
    int i,j;
    while(scanf("%d",&n))
    {
        if(n==-1) break ;
        memset(mp,0,sizeof(mp));
        memset(vis,0,sizeof(vis));
        for(i=1; i<=n; i++)
        {
            scanf("%d%d",&pp[i].x,&pp[i].y);
            mp[pp[i].x][pp[i].y]=1;
            vis[pp[i].x][pp[i].y]++;
        }
        sort(pp+1,pp+n+1,cmp);
        ans=0;
        dfs(1,0);
        printf("%d
",ans);
    }
    return 0;
}





 
原文地址:https://www.cnblogs.com/suncoolcat/p/3325030.html