POJ 3126 Prime Path_BFS

注意结构体队列的使用,在队列中,一条完整的路径才是正确的,中间的歧路最后还是走不通

转载:http://blog.csdn.net/yulanarti/article/details/1787971  ——> 说明sprintf()的作用

注意 sprintf(num, "%d", cur.num);//将数字转化为字符串,可以替代 itoa

  1 #include <iostream>
  2 #include <cstdio>
  3 #include <cstring>
  4 #include <cstdlib>
  5 #include <cmath>
  6 #include <queue>
  7 #define sc(x,y) scanf("%d %d",&(x),&(y))
  8 #define pf(x) printf("%d\n", x)
  9 #define CL(x, y) memset(x,y,sizeof(x))
 10 using namespace std;
 11 const int MAX = 100000;
 12 int prime[MAX] = {0};   //素数表
 13 int N, a, b, i, j, temp;
 14 int used[MAX];
 15 void InitPrime();
 16 void BFS(int x, int y);
 17 struct node
 18 {
 19     int num;
 20     int step;
 21 };
 22 queue <node> Q;
 23 int main()
 24 {
 25     InitPrime();
 26     cin >> N;
 27     while(N--)
 28     {
 29         cin >> a >> b;
 30         CL(used, 0);
 31         BFS(a, b);
 32     }
 33     return 0;
 34 }
 35 void BFS(int front, int rear)
 36 {
 37     while(!Q.empty())
 38         Q.pop();//Q.clear();清空
 39     node first, cur, next;
 40     first.num = front;
 41     first.step = 0;
 42     used[front] = 1;
 43     Q.push(first);
 44     while(!Q.empty())
 45     {
 46         cur = Q.front();
 47         Q.pop();
 48         if(cur.num == rear)
 49         {
 50             cout << cur.step << endl;
 51             return ;
 52         }
 53         for(i = 0; i < 4; i++)
 54         {
 55             char num[5];
 56             sprintf(num, "%d", cur.num);//将数字转化为字符串,可以替代 itoa
 57             for (j = 0; j < 10; j++)
 58             {
 59                 if (j == 0 && i == 0)//千位不能为 0
 60                     continue;
 61                 if(i == 0)
 62                     temp = j*1000+(num[1]-‘0‘)*100+(num[2]-‘0‘)*10+(num[3]-‘0‘);//千位
 63                 else if(i == 1)
 64                     temp = j*100+(num[0]-‘0‘)*1000+(num[2]-‘0‘)*10+(num[3]-‘0‘);//百位
 65                 else if(i == 2)
 66                     temp = j*10+(num[0]-‘0‘)*1000+(num[1]-‘0‘)*100+(num[3]-‘0‘);//十位
 67                 else if(i == 3)
 68                     temp = j+(num[0]-‘0‘)*1000+(num[1]-‘0‘)*100+(num[2]-‘0‘)*10;//个位
 69                 if(prime[temp] && !used[temp])
 70                 {
 71                     next.num = temp;
 72                     next.step = cur.step+1;
 73                     used[temp] = 1;
 74 //                    cout << next.num << " " << next.step << endl;
 75                     Q.push(next);
 76                     Q.push(next);
 77                 }
 78             }
 79         }
 80     }
 81     printf("Impossible\n");
 82     return ;
 83 }
 84 void InitPrime()
 85 {
 86     int i, j;
 87     for(i = 1009; i <= 9973; i++)
 88     {
 89         if(!(i&1))continue;  //奇偶判断
 90         for(j = 3; j*j <= i; j += 2)
 91         {
 92             if(0 == i%j)
 93             {
 94                 break;
 95             }
 96         }
 97         if(j * j > i)
 98         {
 99             prime[i] = 1;
100         }
101     }
102 }

时间: 2024-10-06 00:42:51

POJ 3126 Prime Path_BFS的相关文章

双向广搜 POJ 3126 Prime Path

POJ 3126  Prime Path Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 16204   Accepted: 9153 Description The ministers of the cabinet were quite upset by the message from the Chief of Security stating that they would all have to change th

POJ 3126 Prime Path(素数路径)

p.MsoNormal { margin-bottom: 10.0000pt; font-family: Tahoma; font-size: 11.0000pt } h1 { margin-top: 5.0000pt; margin-bottom: 5.0000pt; text-align: left; font-family: 宋体; font-weight: bold; font-size: 24.0000pt } span.10 { font-family: "Times New Rom

POJ 3126 Prime Path SPFA

http://poj.org/problem?id=3126 题目大意: 给你两个四位的素数s和t,要求每次改变一个数字,使得改变后的数字也为素数,求s变化到t的最少变化次数. 思路: 首先求出所有4位素数. 对于两个素数之间,如果只相差一个数字,那么就建立图,(双向) 最后求最短路即可(可以SPFA也可以BFS) #include<cstdio> #include<cstring> #include<queue> #include<algorithm> u

poj 3126 Prime Path 【暴力BFS】

题意:给你一个4位数,再给你一个4位数,如前一个数的每次只移动一位,问你能不能将第一个数变成第二个. 转移条件:1,只能通过素数作为中转,2,每次移动一位. 如果找到输出最少的转移次数(或步数), 如果找不到输出Impossible. 策略:如题. 直接上代码: #include<stdio.h> #include<string.h> #include<queue> #define M 10005 using std::queue; int vis[10000]; in

POJ - 3126 - Prime Path(BFS)

Prime Path POJ - 3126 题意: 给出两个四位素数 a , b.然后从a开始,每次可以改变四位中的一位数字,变成 c,c 可以接着变,直到变成b为止.要求 c 必须是素数.求变换次数的最小值.(a,b,c都是四位数字,输入时没有前导零) 分析: 每次改变可以获得一个四位数c,然后如果c是素数并且之前没有出现过,那么我们把它放入队列即可. int f[10001]; int v[10001]; void init()//素数筛 { memset(f,0,sizeof f); fo

20200202 POJ - 3126 Prime Path POJ - 1426 Find The Multiple

>>>>>>>>>POJ 1426直达?? >>>>>>>>>POJ 3126直达?? 做了这么几道搜索题,感觉差不多也摸出了门路,模板差不多记下来了,只是面对不同的题目算法不同罢了 简单写一下想法,搞明白搜索的主题到底是什么(之前的mutiple那题,一开始就没想明白到底搜谁,就没想到算法 TBC(晚上再写 ===================================分割线=======

poj 3126 prime path 简单广搜

http://poj.org/problem?id=3126 题意:给你两个四位数a,b,从a开始    每次只能改变上一次数的其中一位,问至少需要几步才能得到b 分析:求最小路   典型的广搜   表面上是    40入口的bfs   但是除去有的数不是素数   入口数远小于40 可以写一个  判断一个数是否为素数的函数  , 每次去 调用 判断一个数是否要进队列 也可以 事先打一个素数表  这样会快点 注意:output  :either with a number stating the

POJ 3126 Prime Path 广度优先搜索 难度:0

http://poj.org/problem?id=3126 搜索的时候注意 1:首位不能有0 2:可以暂时有没有出现在目标数中的数字 #include <cstdio> #include <cstring> #include <queue> using namespace std; const int maxn=1e4+5; const int inf=0x7fffffff; bool prim[maxn]; void judge(){ prim[2]=true; f

(简单) POJ 3126 Prime Path,BFS。

Description The ministers of the cabinet were quite upset by the message from the Chief of Security stating that they would all have to change the four-digit room numbers on their offices. — It is a matter of security to change such things every now