博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
搜索------prime path
阅读量:4953 次
发布时间:2019-06-12

本文共 1220 字,大约阅读时间需要 4 分钟。

给定两个数a,b,每次只能变动a的其中一个数,变成的数也必须是素数,问最少经过几次可以变成b;

----------------------------------------------------------------------------------------------

#include
#include
#include
#include
#include
using namespace std;#define MAXV 11000bool prime[MAXV];void init()//判断是否素数{ int i,j; for(i=1000; i<=MAXV; i++) { for(j=2; j
q; int v,i,j,temp,vtemp,count[MAXV],t[4]; memset(dis,false,sizeof(dis)); memset(count,0,sizeof(count)); q.push(first); dis[first]=true; while(!q.empty()) { v=q.front(); q.pop(); t[0]=v/1000; t[1]=v%1000/100; t[2]=v%100/10; t[3]=v%10;// printf("%d %d %d %d",t[0],t[1],t[2],t[3]); for(j=0; j<4; j++) { temp=t[j]; for(i=0; i<10; i++) if(i!=temp) { t[j]=i; vtemp=t[0]*1000+t[1]*100+t[2]*10+t[3]; if(!dis[vtemp] && prime[vtemp]) { count[vtemp]=count[v]+1; dis[vtemp]=true; q.push(vtemp); } if(vtemp==last) return count[vtemp]; } t[j]=temp; } if(v==last) return count[v]; } return -1;}int main(){ int n,a,b,key; init(); scanf("%d",&n); while(n--) { scanf("%d%d",&a,&b); key=bfs(a,b); if(key!=-1) printf("%d\n",key); else printf("Impossible\n"); } return 0;}

 

转载于:https://www.cnblogs.com/biu-biu-biu-/p/5683402.html

你可能感兴趣的文章
【转】Android详细的对话框AlertDialog.Builder使用方法
查看>>
Unite Beijing 2015大型活动
查看>>
arraylist
查看>>
zoj 1649 Rescue (BFS)(转载)
查看>>
2124: 等差子序列 - BZOJ
查看>>
字符串匹配算法综述
查看>>
Linux centosVMware shell 管道符和作业控制、shell变量、环境变量配置文件
查看>>
【设计模式】工厂模式
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
javascript 继承
查看>>
String类型转int类型方法
查看>>
客户数据库出现大量cache buffer chains latch
查看>>
機械の総合病院 [MISSION LEVEL: C]
查看>>
实战练习细节(分行/拼接字符串/字符串转int/weak和copy)
查看>>
Strict Standards: Only variables should be passed by reference
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
AngularJs表单验证
查看>>
静态方法是否属于线程安全
查看>>
fegin 调用源码分析
查看>>
Linux的基本命令
查看>>