码迷,mamicode.com
首页 > 其他好文 > 详细

Gym - 101670J Punching Power(最大独立集)

时间:2018-10-23 18:00:25      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:possible   路径   ase   tween   names   isp   other   ==   open   

题目:

The park management finally decided to install some popular boxing machines at various strategic places in the park. In fact, to compensate for the previous lack of machines, they decided to install as many machines as possible. Surprisingly enough, the park is not going to be choked with new machines because there are some quite serious legal limitations regarding the locations of the machines. The management has marked all possible boxing machine locations and their respective coordinates on the park plan. Additionally, they also have to respect manufacturer security rule: The distance between any two boxing machines has to be at least 1.3 meters.

Help the management to establish the maximum possible number of boxing machines which can be installed in the park.

Input Specification:

There are several test cases. Each case starts with a line containing one integer N which specifies the number of possible boxing machine locations in the park (1 ≤ N ≤ 2000). Next, there are N lines representing the location coordinates, each line describes one location by a pair of integer coordinates in meters. All locations in one test case are unique. Each coordinate is non-negative and less than or equal to 109 .

You are guaranteed that all locations form a single connected group, that is, it is possible to start in any location and reach any other location by a sequence of steps, each of which changes exactly one coordinate by 1, without leaving the area suitable for placing boxing machines.

Output Specification:

For each test case, print a single line with one integer representing the maximum number of boxing machines which can be installed in the park.

思路:

先吐槽一下:

The distance between any two boxing machines has to be at least 1.3 meters.这句话难道没有用????

建图的规则是根据each of which changes exactly one coordinate by 1这句话来的,,,,,,,,,,直接自闭。

首先建好图,然后求最大独立集就ok了,最大独立集 = 点的个数 - 最大匹配数。

总结这道题被卡的原因:

对匈牙利算法的理解太浅显!

读题不精!

代码:

 

技术分享图片
#include <bits/stdc++.h>
#define inf 0x3f3f3f3f
using namespace std;
typedef long long ll;
const int maxn = 3000;
struct Node
{
    int x,y;
} node[maxn];
vector<int>v[maxn];
int n,vis[maxn],linker[maxn];

bool dfs(int u)
{
    for(int i = 0; i<v[u].size(); i++)//每个与u相连的点
    {
        int _v = v[u][i];//放进交替路中
        if(!vis[_v])
        {
            vis[_v] = 1;
            if(linker[_v]==0 || dfs(linker[_v]))//是未匹配点,说明该交替路是增广路径,交换路径
            {
                linker[_v] = u;
                linker[u] = _v;
                return true;
            }
        }
    }
    return false;
}

int match()
{
    int res = 0;
    memset(linker,0,sizeof(linker));
    for(int i = 0; i<n; i++)
    {
        memset(vis,0,sizeof(vis));
        if(linker[i]==0 && dfs(i))
            res++;
    }
    return res;
}

int main()
{
    while(scanf("%d",&n)!=EOF)
    {
        for(int i = 1; i<=n; i++)
        {
            scanf("%d%d",&node[i].x,&node[i].y);
        }
        for(int i = 1; i<=n; i++)
        {
            v[i].clear();
            for(int j = 1; j<=n; j++)
            {
                if(abs(node[i].x-node[j].x)+abs(node[i].y-node[j].y)==1)
                {
                    v[i].push_back(j);
                }
            }
        }
        int ans = match();
        //cout<<"ans: "<<ans<<endl;
        printf("%d\n",n-ans);
    }
    return 0;
}
View Code

 

Gym - 101670J Punching Power(最大独立集)

标签:possible   路径   ase   tween   names   isp   other   ==   open   

原文地址:https://www.cnblogs.com/sykline/p/9837597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!