Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 19095 | Accepted: 10711 |
Description
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
31033 81791373 80171033 1033Sample Output
670Source
Northwestern Europe 2006题目意思:
给两个是素数的四位数(千位始终不为0),每次改变其中一位,使得改变后的数依然是素数,计算从前一个数到后一个数最少一共需要改变几次。
解题思路:
打表1000~9999中所有的素数。
BFS:队列先将第一个数入队,然后分解出其各个位上的数,循环依次枚举个位~千位,可以是0~9中的任意一个数。
注意每次位数循环维护当前位不变,保证下次循环仅改变下一位上的数。
剪枝:①枚举到与当前位上的数相同的数,②处理过的数。
#include<iostream>#include<cstdio>#include<iomanip>#include<cmath>#include<cstdlib>#include<cstring>#include<map>#include<algorithm>#include<vector>#include<queue>using namespace std;#define INF 0x3f3f3f3f#define MAXN 10000short int d[4];bool prime[MAXN],vis[MAXN];int cnt[MAXN];void init()//1000~9999中所有的素数{ memset(prime,false,sizeof(prime)); int i,j; for(i=1000; i<=10000; i++) { for(j=2; j<i; j++) if(i%j==0) { prime[i]=false; break; } if(j==i) prime[i]=true; }}int bfs(int a,int b){ queue <int> q; q.push(a); vis[a]=true; while(!q.empty()) { int s=q.front(); if(s==b) return cnt[s]; q.pop(); d[0]=s%10;//个位 d[1]=s%100/10;//十位 d[2]=s%1000/100;//百位 d[3]=s/1000;//千位 /*for(int j=3; j>=0; --j) cout<<d[j]<<" "; cout<<endl;*/ int temp,x; for(int j=0; j<4; ++j) //个位~千位 { x=d[j];//记录当前位置改变之前的数 for(int i=0; i<10; ++i) //0~9 { if(x==i) continue;//与当前位相同,剪枝 if(j==3&&i==0)continue;//千位不能为0 d[j]=i;//改变当前位的数 temp=d[3]*1000+d[2]*100+d[1]*10+d[0]; if(vis[temp]) continue;//已访问,剪枝 if(prime[temp])//是素数 { q.push(temp); vis[temp]=true; cnt[temp]=cnt[s]+1;//记录变化次数 } if(temp==b) return cnt[temp]; } d[j]=x;//维护当前位不变,保证下次循环仅改变下一位 } } return -1;}int main(){#ifdef ONLINE_JUDGE#else freopen("F:/cb/read.txt","r",stdin); //freopen("F:/cb/out.txt","w",stdout);#endif ios::sync_with_stdio(false); cin.tie(0); int t; cin>>t; init(); while(t--) { memset(vis,false,sizeof(vis)); memset(cnt,0,sizeof(cnt)); int a,b,ans=0; cin>>a>>b; ans=bfs(a,b); if(ans==-1) cout<<"Impossible"<<endl; else cout<<ans<<endl; } return 0;}/*31033 81791373 80171033 1033*/
新闻热点
疑难解答