HDU-4255 BFS 最短路
题意:蛇形填数,然后素数处是障碍,给你起点终点,求步数;
思路:其实就是bfs,关键是将数字转换成位置比较难;
bfs其实比较简单,就是固定的思路,固定的步骤;
模板:
const int dir[][] = {{-, }, {, }, {, }, {, -}};
int vis[maxn], d[maxn];
bool is_ok(int x, int y)///坐标是否合格,按照题意来进行
{
if(x< || y<||x>n||y>n)
return false;
return true;
}
int dfs(Node st,Node ed)///起点终点
{
queue<Node> q;
q.push(st);///压进起点
memset(vis,,sisteof(vis));
memset(d,,sizeof(d));
int ss = a[st.x][st.y];
d[ss] = ;
int edd = a[ed.x][ed.y];
while(!q.empty())
{
Node c = q.front(),v;
q.pop();
int stt = a[c.x][c.y];
if(stt == edd)///先判断是否到达终点
return d[stt];
repu(i,,)
{
v.x = c.x + dir[i][];
v.y = c.y + dir[i][];
if(is_ok(v.x,v.y))///坐标是否合格
{
int sd = a[v.x][v.y];
if(!vis[sd])///符合所有条件后
{
q.push(v);///压进
vis[sd] = ;///V过
d[sd] = d[stt] + ;///步数为之前的+1
}
}
else
continue;
}
}
return -;
}
该题代码
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <string>
#include <vector>
#include <algorithm>
#include<queue>
#include <set>
#define repu(i,a,b) for(int i=a;i<b;i++)
using namespace std;
#define N 1000010
#define ll long long
#define _cle(m, a) memset(m, a, sizeof(m))
const int maxn = ;
const int mn = ;
int tot;
int a[][];
struct Node
{
int x, y;
} nodes[maxn];
void init()
{
memset(a, , sizeof(a));
a[mn][mn] = ;
tot = ;
nodes[].x = mn;
nodes[].y = mn;
int cur = ;
int i = mn, j = mn+;
while(tot <= maxn)
{
int t;
t = ;
i++;
while(t < cur*)
{
a[--i][j] = ++tot;
nodes[tot].x = i;
nodes[tot].y = j;
t++;
}
t = ;
while(t < cur*)
{
a[i][--j] = ++tot;
nodes[tot].x = i;
nodes[tot].y = j;
t++;
}
t = ;
while(t < cur*)
{
a[++i][j] = ++tot;
nodes[tot].x = i;
nodes[tot].y = j;
t++;
}
t = ;
while(t < cur*)
{
a[i][++j] = ++tot;
nodes[tot].x = i;
nodes[tot].y = j;
t++;
}
++j;
cur++;
}
}
int prime[maxn];
void is_prime()
{
memset(prime, , sizeof(prime));
int m = sqrt(maxn+0.5);
prime[] = prime[] = ;
for(int i = ; i <= m; i++)
{
if(!prime[i])
{
for(int j = i*i; j <= maxn; j+=i)
{
prime[j] = ;
}
}
}
} const int dir[][] = {{-, }, {, }, {, }, {, -}};
int vis[maxn], d[maxn];
bool is_ok(int x, int y)
{
return x>= && y >=;
}
int bfs(Node z,Node b)
{
queue<Node> q;
q.push(z);
memset(vis,,sizeof(vis));
memset(d,,sizeof(d));
int ss = a[z.x][z.y];
d[ss] = ;
int ed = a[b.x][b.y];
while(!q.empty())
{
Node c = q.front(),v;
q.pop();
int st = a[c.x][c.y];
if(st == ed)
return d[st];
repu(i,,)
{
v.x = c.x + dir[i][];
v.y = c.y + dir[i][];
if(is_ok(v.x,v.y))
{
int sd = a[v.x][v.y];
if(!vis[sd]&&prime[sd])
{
q.push(v);
vis[sd] = ;
d[sd] = d[st] + ;
}
}
else
continue;
}
}
return -;
}
int main()
{
init();
is_prime();
int x, y, kase = ;
while(~scanf("%d%d", &x, &y))
{
if(!prime[x] || !prime[y])
{
printf("Case %d: impossible\n", ++kase);
continue;
}
int ans = bfs(nodes[x], nodes[y]);
if(ans == -) printf("Case %d: impossible\n", ++kase);
else printf("Case %d: %d\n", ++kase, ans);
} return ;
}
HDU-4255 BFS 最短路的更多相关文章
- POJ 2251 Dungeon Master (BFS最短路)
三维空间里BFS最短路 #include <iostream> #include <cstdio> #include <cstring> #include < ...
- hdu 4568 Hunter 最短路+dp
Hunter Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Subm ...
- hdu 4531 bfs(略难)
题目链接:点我 第一次不太清楚怎么判重,现在懂了,等下次再做 /* *HDU 4531 *BFS *注意判重 */ #include <stdio.h> #include <stri ...
- 【bzoj5049】[Lydsy九月月赛]导航系统 并查集+双向BFS最短路
题目描述 给你一张 $n$ 个点 $m$ 条边的随机图,边权为1.$k$ 次询问两点间最短路,不连通则输出-1. 输入 第一行包含3个正整数n,m,k(2<=n<=100000,1< ...
- 【bzoj1189】[HNOI2007]紧急疏散evacuate BFS最短路+动态加边网络流
题目描述 发生了火警,所有人员需要紧急疏散!假设每个房间是一个N M的矩形区域.每个格子如果是'.',那么表示这是一块空地:如果是'X',那么表示这是一面墙,如果是'D',那么表示这是一扇门,人们可以 ...
- BZOJ 1195 [HNOI2006]最短母串 (Trie图+状压+bfs最短路)
BZOJ1195 LOJ10061 题目大意:给你$n$个模式串,求一个最短且字典序最小的文本串并输出这个串,$n<=12,len<=50$ 首先对所有模式串构造$Trie$图,$Trie ...
- UVa 1600 Patrol Robot (BFS最短路 && 略不一样的vis标记)
题意 : 机器人要从一个m * n 网格的左上角(1,1) 走到右下角(m, n).网格中的一些格子是空地(用0表示),其他格子是障碍(用1表示).机器人每次可以往4个方向走一格,但不能连续地穿越k( ...
- BFS(最短路) HDU 2612 Find a way
题目传送门 /* BFS:和UVA_11624差不多,本题就是分别求两个点到KFC的最短路,然后相加求最小值 */ /***************************************** ...
- C - 小明系列故事――捉迷藏 HDU - 4528 bfs +状压 旅游-- 最短路+状压
C - 小明系列故事――捉迷藏 HDU - 4528 这个题目看了一下题解,感觉没有很难,应该是可以自己敲出来的,感觉自己好蠢... 这个是一个bfs 用bfs就很好写了,首先可以预处理出大明和二明能 ...
- HDU 1548 A strange lift (bfs / 最短路)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1548 A strange lift Time Limit: 2000/1000 MS (Java/Ot ...
随机推荐
- hdu-----(1150)Machine Schedule(最小覆盖点)
Machine Schedule Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
- 198. 213. 337. House Robber -- 不取相邻值的最大值
198. House Robber You are a professional robber planning to rob houses along a street. Each house ha ...
- Farseer.Net
Farseer.Net V0.2 ORM开源框架 目录 http://www.cnblogs.com/steden/archive/2013/01/22/2871160.html V1.0教程:htt ...
- Druid:一个用于大数据实时处理的开源分布式系统
Druid是一个用于大数据实时查询和分析的高容错.高性能开源分布式系统,旨在快速处理大规模的数据,并能够实现快速查询和分析.尤其是当发生代码部署.机器故障以及其他产品系统遇到宕机等情况时,Druid仍 ...
- ZOJ 3826
Hierarchical Notation Time Limit: 2 Seconds Memory Limit: 131072 KB In Marjar University, stude ...
- 《Play for Java》学习笔记(四)Controller
play的一大优势是可以将HTTP映射到JAVA API代码(Type-safe mapping from HTTP to an idiomatic Scala or Java API),完美的实现了 ...
- XHR2 和[FromBody]使用说明
[FromBody]必须是application/json 否则会报415 不支持的类型 //Forms function FormsPost(data) { //Default Type x-www ...
- php solr 查询
$options = array( 'hostname' => 'localhost', 'port' => 8080, 'path' => 'solr/test'); $clien ...
- Octopus系列之开发过程各个技术点
自定义了页面周期 使用唯一的一个VelocityEngine全局的静态实例,优化了小泥鳅blog中每次请求都要创建VelocityEngine实例对象,减少了对象的开销 通过UA判断请求来自的设备,从 ...
- 使用BroadcastReceiver监听系统接收的短信
import android.content.BroadcastReceiver;import android.content.Context;import android.content.Inten ...