hkhv

请叫我水题切割机

导航

poj 3126.Prime Path(bfs)

Posted on 2015-11-17 20:51  hkhv  阅读(145)  评论(0)    收藏  举报
Prime Path
 

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 and then, to keep the enemy in the dark.
— But look, I have chosen my number 1033 for good reasons. I am the Prime minister, you know!
— I know, so therefore your new number 8179 is also a prime. You will just have to paste four new digits over the four old ones on your office door.
— No, it’s not that simple. Suppose that I change the first digit to an 8, then the number will read 8033 which is not a prime!
— I see, being the prime minister you cannot stand having a non-prime number on your door even for a few seconds.
— Correct! So I must invent a scheme for going from 1033 to 8179 by a path of prime numbers where only one digit is changed from one prime to the next prime.

Now, the minister of finance, who had been eavesdropping, intervened.
— No unnecessary expenditure, please! I happen to know that the price of a digit is one pound.
— Hmm, in that case I need a computer program to minimize the cost. You don't know some very cheap software gurus, do you?
— In fact, I do. You see, there is this programming contest going on... Help the prime minister to find the cheapest prime path between any two given four-digit primes! The first digit must be nonzero, of course. Here is a solution in the case above.
1033
1733
3733
3739
3779
8779
8179
The cost of this solution is 6 pounds. Note that the digit 1 which got pasted over in step 2 can not be reused in the last step – a new 1 must be purchased.

Input

One line with a positive number: the number of test cases (at most 100). Then for each test case, one line with two numbers separated by a blank. Both numbers are four-digit primes (without leading zeros).

Output

One line for each case, either with a number stating the minimal cost or containing the word Impossible.

Sample Input

3
1033 8179
1373 8017
1033 1033

Sample Output

6
7
0

题目大意:简单来说,就是有t组数据,然后给你两个四位的素数数 n 和 m 这两个数字不考虑前导0 的情况。然后每次你可以改变某一位上的数字,但是要求改变之后的数字也是素数,问至少几次 可以使n变成m 。 这个思路就有了,可以用bfs的思想。
看下我的代码 和注释,你们肯定会懂得。

 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <queue>
 4 #include <algorithm>
 5 using namespace std;
 6 int vis[10001];            //数字的访问标记,因为访问过的数字 如果变回去的话 肯定增加了步数
 7 int n,m;                //两个素数
 8 int res;                //记录最后的结果
 9 int pow(int a,int b)            //自己写的指数函数
10 {
11     int res = 1;
12     for (int i = 0; i < b ; i++ )
13     {
14         res *= a;
15     }
16     return res;
17 }
18 struct sta            
19 {
20     int n;                //记录数字
21     int count;            //记录变了几次
22 }num;
23 int check(int num)                //判断数字符不符合要求
24 {
25     int flag = 0;
26     int temp = (num / 2) + 1;
27     if ( vis[num] == 1 || num > 9999 || num < 1000)            //如果访问过了 就直接跳出
28         return 0; 
29     for (int i = 2 ; i <= temp ; i++ )                //求这个数是不是素数
30     {
31         if ( num % i == 0 )
32         {
33             flag =1;
34             break;
35         }
36     }
37     if ( flag == 0 && vis[num] == 0 && num >= 1000 && num <= 9999)
38     {
39         return 1;
40     }
41     else 
42     {
43         return 0;
44     }
45 }
46 
47 void  bfs(sta s)
48 {
49     queue <sta> q;
50     s.count = 0;
51     vis[s.n] = 1;
52     q.push(s);            //刚开始的数字入队
53     sta now,next;
54     while (!q.empty())    
55     {
56         now = q.front();
57         q.pop();    
58         if (now.n == m )            //如果已经变化到结果,则退出
59         {
60             res = now.count;
61             return ;
62         }
63         for (int i = 1 ; i <= 4 ; i++ )
64         {
65             for (int j = 0 ; j <= 9 ; j++ )
66             {
67                 next.n = now.n -( (now.n/pow(10,i-1)) % 10 ) * pow(10,i-1) + pow(10,i-1)* j;  //将某一位的数字先变成0  之后再变成1,2,3,。。。相当于直接改变
68                 next.count = now.count + 1;                //步数增加
69                 if (check(next.n))                //如果符合要求,入队
70                 {
71 
72                     vis[next.n] = 1;
73                     q.push(next);
74                 }
75             }
76         }
77     }
78     return ;
79 }
80 
81 int main()
82 {
83     int t;
84     scanf("%d",&t);
85     while ( t-- )
86     {
87         res = 0;
88         memset(vis,0,sizeof(vis));            //每次输入都要初始化vis
89         scanf("%d%d",&n,&m);
90         num.n = n;
91         num.count = 0;
92         bfs(num);
93         printf("%d\n",res);                //输出结果
94     }
95     return 0;
96 }