hdu4435(思维)

There are n cities in M^3's empire. M^3 owns a palace and a car and the palace resides in city 1. One day, she wants to travel around all the cities from her palace and finally back to her home. However, her car has limited energy and can only travel by no more than D meters. Before it was run out of energy, it should be charged in some oil station. Under M^3's despotic power, the judge is forced to build several oil stations in some of the cities. The judge must build an oil station in city 1 and building other oil stations is up to his choice as long as M^3 can successfully travel around all the cities.
Building an oil station in city i will cost 2 i-1 MMMB. Please help the judge calculate out the minimum cost to build the oil stations in order to fulfill M^3's will.

Input There are several test cases (no more than 50), each case begin with two integer N, D (the number of cities and the maximum distance the car can run after charged, 0 < N ≤ 128).
Then follows N lines and line i will contain two numbers x, y(0 ≤ x, y ≤ 1000), indicating the coordinate of city i.
The distance between city i and city j will be ceil(sqrt((xi - xj) 2 + (yi - yj) 2)). (ceil means rounding the number up, e.g. ceil(4.1) = 5)
Output For each case, output the minimum cost to build the oil stations in the binary form without leading zeros.
If it's impossible to visit all the cities even after all oil stations are build, output -1 instead.
Sample Input
3 3
0 0
0 3
0 1

3 2
0 0
0 3
0 1

3 1
0 0
0 3
0 1

16 23
30 40
37 52
49 49
52 64
31 62
52 33
42 41
52 41
57 58
62 42
42 57
27 68
43 67
58 48
58 27
37 69
Sample Output
11
111
-1
10111011

/*************************************************************************
	> File Name: m3.cpp
	> Author: 
	> Mail: 
	> Created Time: 2017年11月28日 星期二 10时36分15秒
 ************************************************************************/

#include
#include
#include
#include
#include
#include
using namespace std;
int n,d;
struct node
{
    double x,y;
}p[200];
int bmap[200][200];
int ok[200],vis[200];
int dist[200];
inline double dis(int a,int b)
{
    return sqrt((p[a].x-p[b].x)*(p[a].x-p[b].x)+(p[a].y-p[b].y)*(p[a].y-p[b].y));
}
inline bool bfs()
{
    for(int i=0;iq; q.push(0); vis[0] = 1;
    while(!q.empty())
    {
        int u = q.front(); q.pop();
        for(int i=0;id) return false;
    }
    return true;
}
int main()
{
    while(scanf("%d%d",&n,&d)!=EOF)
    {
        for(int i=0;i=0;i--)
        {
            ok[i] = 0;
            if(!bfs()) ok[i] = 1;
        }
        int p = n-1; while(!ok[p]) p--;
        for(int i=p;i>=0;i--) printf("%d",ok[i]);
        puts("");
    }
    return 0;
}




你可能感兴趣的:(图论,暴力)