hdu - 1195 Open the Lock (bfs) && hdu 1973 Prime Path (bfs)
http://acm.hdu.edu.cn/showproblem.php?pid=1195
这道题虽然只是从四个数到四个数,但是状态很多,开始一直不知道怎么下手,关键就是如何划分这些状态,确保每一个状态都能遍历到。
得到四个数之后,分三种情况处理,每次改变一个数之后都要加入队列,最先输出的就是步数最少。
#include <cstdio>
#include <cstring>
#include <queue>
using namespace std; struct point
{
int f[];
int step;
}s,e;
int vis[][][][];
void bfs()
{
memset(vis,,sizeof(vis));
queue<point>que;
s.step=;
que.push(s);
vis[s.f[]][s.f[]][s.f[]][s.f[]]=;
while(!que.empty())
{
point t=que.front(); que.pop();
// printf("%d %d %d %d %d\n",t.f[0],t.f[1],t.f[2],t.f[3],t.step);
if(t.f[]==e.f[]&&t.f[]==e.f[]&&t.f[]==e.f[]&&t.f[]==e.f[]) {printf("%d\n",t.step);return;}
for(int i=;i<;i++)
{
s=t;
if(s.f[i]==) s.f[i]=;
else s.f[i]++;
if(!vis[s.f[]][s.f[]][s.f[]][s.f[]])
{
vis[s.f[]][s.f[]][s.f[]][s.f[]]=;
s.step++;
que.push(s);
}
}
for(int i=;i<;i++)
{
s=t;
if(s.f[i]==) s.f[i]=;
else s.f[i]--;
if(!vis[s.f[]][s.f[]][s.f[]][s.f[]])
{
vis[s.f[]][s.f[]][s.f[]][s.f[]]=;
s.step++;
que.push(s);
}
}
for(int i=;i<;i++)
{
s=t;
s.f[i]=t.f[i+],s.f[i+]=t.f[i];
if(!vis[s.f[]][s.f[]][s.f[]][s.f[]])
{
vis[s.f[]][s.f[]][s.f[]][s.f[]]=;
s.step++;
que.push(s);
}
}
}
}
int main()
{
// freopen("a.txt","r",stdin);
int t;
char s1[],s2[];
scanf("%d",&t);
getchar();
while(t--)
{
scanf("%s%s",s1,s2);
// printf("%s %s\n",s1,s2);
for(int i=;i<;i++)
{
s.f[i]=s1[i]-'';
e.f[i]=s2[i]-'';
}
bfs();
}
return ;
}
http://acm.hdu.edu.cn/showproblem.php?pid=1973
这道题很上面那道题一样,也是求一个四位数质数到另一个四位数质数的最小步数,不过这里要求转换的每一步都是质数.
每次只能替换四位中的一位。
我是用了比较笨的方法,把所有情况都找出来。枚举4位数每一位换成0-9中任何一位的情况,然后不断更新一个最小值就行.
#include <iostream>
#include <cstdio>
#include <cmath>
#include <vector>
#include <cstring>
#include <string>
#include <algorithm>
#include <string>
#include <set>
#include <functional>
#include <numeric>
#include <sstream>
#include <stack>
#include <map>
#include <queue>
#pragma comment(linker, "/STACK:102400000,102400000")
#define CL(arr, val) memset(arr, val, sizeof(arr)) #define ll long long
#define inf 0x7f7f7f7f
#define lc l,m,rt<<1
#define rc m + 1,r,rt<<1|1
#define pi acos(-1.0) #define L(x) (x) << 1
#define R(x) (x) << 1 | 1
#define MID(l, r) (l + r) >> 1
#define Min(x, y) (x) < (y) ? (x) : (y)
#define Max(x, y) (x) < (y) ? (y) : (x)
#define E(x) (1 << (x))
#define iabs(x) (x) < 0 ? -(x) : (x)
#define OUT(x) printf("%I64d\n", x)
#define lowbit(x) (x)&(-x)
#define Read() freopen("a.txt", "r", stdin)
#define Write() freopen("b.txt", "w", stdout);
#define maxn 1000000000
#define N 2510
#define mod 1000000000
using namespace std; struct point
{
int num[];
int step;
}s,e;
bool is_prime(int a[])
{
int n=;
n=a[]*+a[]*+a[]*+a[];
//printf("%d\n",n);
for(int i=;i*i<=n;i++)
if(n%i==) return false;
return true;
}
int vis[][][][];
int ans;
void bfs()
{
memset(vis,,sizeof(vis));
queue<point>que;
s.step=;
que.push(s);
vis[s.num[]][s.num[]][s.num[]][s.num[]]=;
while(!que.empty())
{
point t=que.front();que.pop();
//printf("%d %d %d %d %d\n",t.num[0],t.num[1],t.num[2],t.num[3],t.step);
if(t.num[]==e.num[]&&t.num[]==e.num[]&&t.num[]==e.num[]&&t.num[]==e.num[]&&t.step<ans)
{
ans=t.step;
}
for(int i=;i<;i++)
{
for(int j=;j<;j++)
{
s=t;
s.num[i]=j;
if(!(i==&&j==)&&!vis[s.num[]][s.num[]][s.num[]][s.num[]]&&is_prime(s.num)) //注意首位不为0
{
vis[s.num[]][s.num[]][s.num[]][s.num[]]=;
s.step=t.step+;
que.push(s);
}
}
}
}
if(ans!=inf)
printf("%d\n",ans);
else printf("Impossible\n");
}
int main()
{
//freopen("a.txt","r",stdin);
int n;
char s1[],s2[];
scanf("%d",&n);
while(n--)
{
scanf("%s%s",s1,s2);
for(int i=;i<;i++)
{
s.num[i]=s1[i]-'';
e.num[i]=s2[i]-'';
//printf("%d %d\n",s.num[i],e.num[i]);
}
if(strcmp(s1,s2)==) printf("0\n");
else
{
ans=inf;
bfs();
}
}
return ;
}
hdu - 1195 Open the Lock (bfs) && hdu 1973 Prime Path (bfs)的更多相关文章
- [HDU 1973]--Prime Path(BFS,素数表)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1973 Prime Path Time Limit: 5000/1000 MS (Java/Others ...
- hdu 1973 Prime Path
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=1973 Prime Path Description The ministers of the cabi ...
- hdu 1195 Open the Lock
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=1195 Open the Lock Description Now an emergent task f ...
- HDU - 1973 - Prime Path (BFS)
Prime Path Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total ...
- POJ2126——Prime Path(BFS)
Prime Path DescriptionThe ministers of the cabinet were quite upset by the message from the Chief of ...
- POJ3126 Prime Path (bfs+素数判断)
POJ3126 Prime Path 一开始想通过终点值双向查找,从最高位开始依次递减或递增,每次找到最接近终点值的素数,后来发现这样找,即使找到,也可能不是最短路径, 而且代码实现起来特别麻烦,后来 ...
- POJ 3126 Prime Path(BFS 数字处理)
意甲冠军 给你两个4位质数a, b 每次你可以改变a个位数,但仍然需要素数的变化 乞讨a有多少次的能力,至少修改成b 基础的bfs 注意数的处理即可了 出队一个数 然后入队全部能够由这个素 ...
- poj 3126 Prime Path bfs
题目链接:http://poj.org/problem?id=3126 Prime Path Time Limit: 1000MS Memory Limit: 65536K Total Submi ...
- POJ3126 Prime Path —— BFS + 素数表
题目链接:http://poj.org/problem?id=3126 Prime Path Time Limit: 1000MS Memory Limit: 65536K Total Submi ...
随机推荐
- 手写一套迷你版HTTP服务器
本文主要介绍如何通过netty来手写一套简单版的HTTP服务器,同时将关于netty的许多细小知识点进行了串联,用于巩固和提升对于netty框架的掌握程度. 服务器运行效果 服务器支持对静态文件css ...
- SpringMVC的简单传值
之前学习SpringMVC时感觉他的传值很神奇:简便,快捷,高效. 今天写几个简单的传值与大家分享,希望能对大家有帮助. 一. 从后往前传: (1) @Controller @RequestMappi ...
- 使用Jenkins进行android项目的自动构建(2)
Maven and POM 1. 什么是Maven? 官方的解释是: http://maven.apache.org/guides/getting-started/index.html#What_is ...
- 新奇:(nodejs兄弟)用HTML + FLASH +JS 也可以写桌面EXE。
首先看下面这张图片,下面的所有界面都是用html代码实现的. 编程IDE:vb6.0 使用控件:WEBBROWSER 原理:使用olelib 让程序继承:IDocHostUIHandler 和 ICu ...
- spring mvc 配置运行报错误
四月 06, 2015 10:51:18 上午 org.apache.catalina.startup.VersionLoggerListener log 信息: Server version: Ap ...
- (转)Nutz | Nutz项目整合Spring实战
http://blog.csdn.net/evan_leung/article/details/54767143 Nutz项目整合Spring实战 前言 Github地址 背景 实现步骤 加入spri ...
- 网络基础编程_5.4聊天室-IOCP服务器
聊天室-IOCP服务器 main 创建完成端口内核对象(CreateIoCompletionPort) 获取核心数并创建线程(GetSystemInfo + CreateThread) 创建套接字并绑 ...
- 最小生成树Prim算法 Kruskal算法
Prim算法(贪心策略)N^2 选定图中任意定点v0,从v0开始生成最小生成树 树中节点Va,树外节点Vb 最开始选一个点为Va,其余Vb, 之后不断加Vb到Va最短距离的点 1.初始化d[v0]=0 ...
- 08C++函数
函数 4.1 概述 一个较大的程序不可能完全由一个人从头至尾地完成,更不可能把所有的内容都放在一个主函数中.为了便于规划.组织.编程和调试,一般的做法是把一个大的程序划分为若干个程序模块(即程序文件) ...
- 负对数似然(negative log-likelihood)
negative log likelihood文章目录negative log likelihood似然函数(likelihood function)OverviewDefinition离散型概率分布 ...