Prime Path

Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 27852   Accepted: 15204

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

  1. 3
  2. 1033 8179
  3. 1373 8017
  4. 1033 1033

Sample Output

  1. 6
  2. 7
  3. 0

大致题意:

给定两个四位素数a  b,要求把a变换到b

变换的过程要保证  每次变换出来的数都是一个 四位素数,而且当前这步的变换所得的素数  与  前一步得到的素数  只能有一个位不同,而且每步得到的素数都不能重复。 不得有前导零!

求从a到b最少需要的变换次数。无法变换则输出Impossible

广度优先搜索

  1. #include <iostream>
  2. #include <cstring>
  3. #include <cstdio>
  4. #include <queue>
  5. using namespace std;
  6. const int N = 10000;
  7. bool visit[N];
  8. bool Notprime[N];
  9. int dist[N];
  10. void GetNotPrimeVisit ( )
  11. {
  12. int i, j;
  13. for( i=2; i<=N; i++ )
  14. for( j=i<<1; j<=N; j+=i )
  15. Notprime[j] = true;
  16. fill( Notprime, Notprime+1000, true ); //以防万一把前一千个数去掉
  17. }
  18. int getnumber[45];
  19. int x;
  20. void SwapNumber( int v )
  21. {
  22. x = 0;
  23. int i, a, b, c, d, n;
  24. a = v / 1000;
  25. b = v / 100 % 10;
  26. c = v % 100 / 10;
  27. d = v % 10;
  28. n = v - a * 1000;
  29. for( i=1; i<10; i++ )
  30. getnumber[x++] = n + i * 1000;
  31. n = v - b * 100;
  32. for( i=0; i<10; i++ )
  33. getnumber[x++] = n + i * 100;
  34. n = v - c * 10;
  35. for( i=0; i<10; i++ )
  36. getnumber[x++] = n + i * 10;
  37. n = v - d;
  38. for( i=0; i<10; i++ )
  39. getnumber[x++] = n + i;
  40. }
  41. queue <int> Q;
  42. void BFS ( int a, int b )
  43. {
  44. int i, j, v;
  45. int n = a;
  46. Q.push( n );
  47. visit[n] = true;
  48. while( !Q.empty() )
  49. {
  50. v = Q.front();
  51. if( v == b ) break;
  52. Q.pop();
  53. SwapNumber( v ); //得到40个入口
  54. for( j=0; j<x; j++ )
  55. {
  56. i = getnumber[j];
  57. if( !Notprime[i] && !visit[i] ) //使用素数表和visit剪枝
  58. {
  59. Q.push( i );
  60. dist[i] = dist[v] + 1;
  61. visit[i] = true;
  62. }
  63. }
  64. }
  65. if( !Q.empty() ) cout << dist[v] << endl;
  66. else cout << "Impossible" << endl;
  67. }
  68. int main()
  69. {
  70. GetNotPrimeVisit(); //得到素数表
  71. int t;
  72. cin >> t;
  73. while( t-- )
  74. {
  75. fill( visit, visit+N, false ); //初始化
  76. fill( dist, dist+N, 0 ); //初始化
  77. while( !Q.empty() ) Q.pop(); //初始化,清空队列
  78. int a, b;
  79. cin >> a >> b;
  80. BFS( a, b ); //广搜
  81. }
  82. return 0;
  83. }

POJ-3126-Prime Path(BFS)的更多相关文章

  1. POJ 3126 Prime Path (BFS)

    [题目链接]click here~~ [题目大意]给你n,m各自是素数,求由n到m变化的步骤数,规定每一步仅仅能改变个十百千一位的数,且变化得到的每个数也为素数 [解题思路]和poj 3278类似.b ...

  2. POJ 3126 Prime Path(BFS算法)

    思路:宽度优先搜索(BFS算法) #include<iostream> #include<stdio.h> #include<cmath> #include< ...

  3. POJ 3126 Prime Path (bfs+欧拉线性素数筛)

    Description The ministers of the cabinet were quite upset by the message from the Chief of Security ...

  4. POJ - 3126 - Prime Path(BFS)

    Prime Path POJ - 3126 题意: 给出两个四位素数 a , b.然后从a开始,每次可以改变四位中的一位数字,变成 c,c 可以接着变,直到变成b为止.要求 c 必须是素数.求变换次数 ...

  5. POJ 3126 Prime Path(素数路径)

    POJ 3126 Prime Path(素数路径) Time Limit: 1000MS    Memory Limit: 65536K Description - 题目描述 The minister ...

  6. 【POJ - 3126】Prime Path(bfs)

    Prime Path 原文是English 这里直接上中文了 Descriptions: 给你两个四位的素数a,b.a可以改变某一位上的数字变成c,但只有当c也是四位的素数时才能进行这种改变.请你计算 ...

  7. poj 3126 Prime Path(搜索专题)

    Prime Path Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 20237   Accepted: 11282 Desc ...

  8. HDU - 1973 - Prime Path (BFS)

    Prime Path Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total ...

  9. Prime Path(BFS)

    Prime Path Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 131072/65536K (Java/Other) Total S ...

  10. (简单) POJ 3126 Prime Path,BFS。

    Description The ministers of the cabinet were quite upset by the message from the Chief of Security ...

随机推荐

  1. spring4-2-bean配置-6-使用外部属性文件

    aaarticlea/png;base64,iVBORw0KGgoAAAANSUhEUgAAAk0AAAFGCAIAAAD4tzxRAAAgAElEQVR4nO2d27HsOm+tOxWn4CeXAm ...

  2. IntelliJ IDEA 安装

    1.在终端输入sudo vim /private/etc/hosts 2.在打开的hosts文件中,在尾行添加 0.0.0.0 account.jetbrains.com 3.去网站http://id ...

  3. extends注意事项

    属性可以在子类中被调用,而局部变量不可以

  4. C# 静态类的使用

    静态类与非静态类基本相同,但存在一个区别:静态类不能实例化.也就是说,不能使用 new 关键字创建静态类类型的变量.因为没有实例变量,所以要使用类名本身访问静态类的成员. static class C ...

  5. HDU 4352 XHXJ's LIS (数位DP+LIS+状态压缩)

    题意:给定一个区间,让你求在这个区间里的满足LIS为 k 的数的数量. 析:数位DP,dp[i][j][k] 由于 k 最多是10,所以考虑是用状态压缩,表示 前 i 位,长度为 j,状态为 k的数量 ...

  6. HBASE--MapReduce

    1.查看 HBase 的 MapReduce 任务的执行 $ bin/hbase mapredcp 2.执行环境变量的导入 $ export HBASE_HOME= ~/hadoop_home/hba ...

  7. Sweetkang 的机器学习实验室 (1)

    前言 近年来,Machine Learning 在许多领域上已然取得了可喜的成就,非常火热.就我个人来讲,有意将业余 Sport Programming 的范围扩展一下,譬如 Topcoder Mar ...

  8. 系统蓝屏stop:ox000007B错误解决方案

    解决方法:开机进入bios:BIOS->Advanced->SATA Mode:[AHCI改为ATA或Compatibility],然后F10保存退出. ATA是指硬盘使用IDE兼容模式, ...

  9. Android-帧布局(FrameLayout)

    帧布局的特点是,一层一层的覆盖在上面 帧布局,使用比较多的属性是: android:layout_gravity="bottom" 也支持这些属性的设置: <!-- andr ...

  10. GitHub上创建组织

    4.3. 组织和团队 GitHub 在早期没有专门为组织提供账号,很多企业用户或大型开源组织只好使用普通用户账号作为组织的共享账号来使用.后来,GitHub推出了组织这一新的账号管理模式,满足大型开发 ...