[UVA 11853]Paintball[DFS]

题目链接:[UVA 11853]Paintball[DFS]

题意分析:

在一个1000*1000的方块场地中,你需要从最左边开始一路避开敌人的攻击到达最右边。敌人有自己的坐标以及攻击范围,也就是一个圆形范围内你都不能碰到,问你能到达最右边吗?能的话输出左边进入的最大坐标(0,Ymax), 右边出去的最大坐标(1000,Ymax)。

解题思路:

什么情况下不能到达目标呢?只有这种情况,也就是相邻的圆连接起来隔断了整个地图,否则都是可以到达的。这样的话,一个dfs直接判断就行了。剩下的是坐标怎么找到,首先默认最大坐标为(0,1000)和(1000,1000),什么时候不能从这个点出发呢?以最左边的进入点为例:如下图

此时,最高点,只能是红色点。可以发现,仅有这种从入点到其最上方都被挡住的情况,才会使得进入点下移。这样我们在dfs判断是否被隔断的时候,就可以顺手判断最高点位置了。

个人感受:

嘛,好好写也不是太难啊这题。不过CE了好多发,说我定义的变量y1 y2被定义成了其它东西,最后只能改成ans1、ans2。也不知道为啥。

具体代码如下:

#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<queue>
using namespace std;
const int INF = 0x7f7f7f7f, MAXN = 1111;
double ans1, ans2; //左边最大y值,右边最大y值
bool flag, vis[MAXN];
struct Circle{
    double x, y, r;
    void read()
    {
        scanf("%lf%lf%lf", &x, &y, &r);
    }
}circle[MAXN];

vector<int> G[MAXN];

double DIS(int a, int b) //圆心间距离
{
    double dx = circle[a].x - circle[b].x;
    double dy = circle[a].y - circle[b].y;
    return sqrt(dx * dx + dy * dy);
}

void dfs(int u)
{
    if (flag || vis[u]) return;
    vis[u] = 1;
    if (circle[u].y <= circle[u].r) //和下边界相交,无法到达
    {
        flag = 1; return;
    }
    //如果和最左边或者最右边相交,则更新
    if (circle[u].x <= circle[u].r) ans1 = min(ans1, circle[u].y - sqrt(circle[u].r*circle[u].r - circle[u].x*circle[u].x));
    if (circle[u].x + circle[u].r >= 1000) ans2 = min(ans2, circle[u].y - sqrt(circle[u].r*circle[u].r - (1000 - circle[u].x)*(1000 - circle[u].x)));
    for (int i = 0; i < G[u].size(); ++i)
    {
        dfs(G[u][i]);
    }
}

int main()
{
    int n;
    while (~scanf("%d", &n))
    {
        ans1 = ans2 = 1000.0;
        for (int i = 0; i < n; ++i)
        {
            circle[i].read();
            G[i].clear();
        }
        for (int i = 0; i < n; ++i) //预处理出圆与圆间的连接关系,方便dfs访问
        {
            for (int j = i + 1; j < n; ++j)
            {
                if (DIS(i, j) <= circle[i].r + circle[j].r)
                {
                    G[i].push_back(j);
                    G[j].push_back(i);
                }
            }
        }
        flag = 0;
        memset(vis, 0, sizeof vis);
        for (int i = 0; i < n; ++i)
        {
            if (circle[i].r + circle[i].y >= 1000)
                dfs(i);
        }
        if (flag) printf("IMPOSSIBLE\n");
        else printf("%.2f %.2f %.2f %.2f\n", 0.0, ans1, 1000.0, ans2);
    }
    return 0;
}

版权声明:欢迎转载(^ω^)~不过转载请注明原文出处:http://blog.csdn.net/catglory ?(????)

时间: 2024-10-15 07:12:01

[UVA 11853]Paintball[DFS]的相关文章

UVA 11853 - Paintball(dfs)

UVA 11853 - Paintball 题目链接 题意:就是给定一些圆,判断能否不经过这些圆从左边走到右边,如果可以要求起始和终止位置尽量往北,输出位置 思路:每次找一个超出上边界的圆dfs,如果能到下边界,就是隔断了肯定到达不了,如果隔断左右边界,就要更新答案的值 代码: #include <cstdio> #include <cstring> #include <cmath> #include <cstdlib> #include <algor

uva 11853 Paintball dfs找连通块

题意: 给出一个矩形湖, 湖里面有一些圆形地小岛, 问能否从左岸乘船到达右岸,如果能,找出最上面的起点和终点. 题解: 如果能从左岸到达右岸,那么一定不能存在一个连通的岛屿从上岸连到下岸, 所以直接从上到下做dfs,判断是否存在从上岸到下岸地连通块,完成判断.那么接下来就是如何找出最上方地点了,画画图便发现,对于起点,如果存在跨越上岸和左岸地连通岛屿,那么起点一定只能在左岸地交点下方,所以,只需在dfs的过程中更新起点和终点位置即可. 代码: #include <queue> #include

UVA 11853 Paintball ——(dfs+圆交判定)

题意:给出一个1000*1000大小的矩阵,里面有若干圆,表示障碍物,现在要找出从左边到右边的一条通路,输出入口和出口的坐标,如果有多答案,输出y值最大的答案. 分析:从与上面相连的圆开始dfs,每次找与之相交的圆作为dfs的路径,如果能访问到下面,那么左边和右边肯定是不连通的:否则,连通.并且在dfs的时候更新y值最大的答案. 具体见代码: 1 #include <stdio.h> 2 #include <algorithm> 3 #include <string.h>

[dfs]11853 - Paintball

You are playing paintball on a 1000 1000 square eld. Anumber of your opponents are on the eld hiding behind treesat various positions. Each opponent can re a paintball acertain distance in any direction. Can you cross the eldwithout being hit by a pa

UVA 11853 [dfs乱搞]

/* 大连热身E题 不要低头,不要放弃,不要气馁,不要慌张 题意: 在1000×1000的格子内有很多个炮弹中心,半径给定. 为某人能否从西部边界出发,从东部边界走出. 不能输出不能,能的话输出最北边的入口和出口的坐标. 思路: dfs乱搞题.把炮弹辐射范围连在一起的炮弹看作一个整体,记录下它围起来的边界区域. 然后找到最北边的输出. */ #include<bits/stdc++.h> using namespace std; double x[1005],y[1005],r[1005];

UVA 784-Maze Exploration(dfs)

Maze Exploration A maze of rectangular rooms is represented on a two dimensional grid as illustrated in figure 1a. Each point of the grid is represented by a character. The points of room walls are marked by the same character which can be any printa

uva 211(dfs)

211 - The Domino Effect Time limit: 3.000 seconds A standard set of Double Six dominoes contains 28 pieces (called bones) each displaying two numbersfrom 0 (blank) to 6 using dice-like pips. The 28 bones, which are unique, consist of the followingcom

UVa 140 Bandwidth(DFS 回溯 剪枝)

题意  有一个无向图  对于其所有顶点的一个排列 称一顶点与所有与其有边的其它顶点在排列中下标差的最大值为这个顶点的带宽   而所有顶点带宽的最大值为这个排列的带宽   求这个图带宽最小的排列 枚举排列  ans记录当前找到的最小带宽  枚举过程中一旦出现带宽大于ans的也就不用再扩展了  这样枚举完就得到了答案 #include<cstdio> #include<cstring> using namespace std; const int N = 50; int n, ans,

UVA Transportation (DFS)

 Transportation  Ruratania is just entering capitalism and is establishing new enterprising activities in many fields including transport. The transportation company TransRuratania is starting a new express train from city A to city B with several st