标签:include sof set computer ssi mat const span end
1033The 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.
1733
3733
3739
3779
8779
8179
Input
Output
Sample Input
3 1033 8179 1373 8017 1033 1033
Sample Output
6 7 0
题意:
每一步只能更改其中的一个数字,并且更改后的数字必须是素数,问最短需要多少步可以变成需要的数字。
题解:
求这种最短路一般都用BFS。代码稍微复杂了点。可以打张素数表,可以节省时间。
#include<iostream> #include<queue> #include<cstring> using namespace std; const int maxn=1e4+5; bool isp[maxn],vis[maxn]; int n,m; struct node { int a[4],step; }; bool is_prime(int n) { for(int i=2;i*i<=n;i++) { if(n%i==0) return false; } return true; } int bfs(int n) { node now; now.a[0]=n/1000; now.a[1]=n/100%10; now.a[2]=n/10%10; now.a[3]=n%10; now.step=0; queue<node>que; que.push(now); while(que.size()) { now=que.front(); que.pop(); node next; if(now.a[0]==m/1000&&now.a[1]==m/100%10&&now.a[2]==m/10%10&&now.a[3]==m%10) return now.step; for(int i=0;i<4;i++) { for(int j=0;j<10;j++) { next=now; if(i||j) next.a[i]=j; else continue; int sum=next.a[0]; for(int k=1;k<4;k++) sum=sum*10+next.a[k]; if(!vis[sum]&&isp[sum]) { vis[sum]=true; next.step++; que.push(next); } } } } return -1; } int main() { for(int i=1000;i<10000;i++) isp[i]=is_prime(i);//打素数表 int t; cin>>t; while(t--) { memset(vis,false,sizeof(vis)); cin>>n>>m; vis[n]=true; cout<<bfs(n)<<endl; } return 0; }
标签:include sof set computer ssi mat const span end
原文地址:http://www.cnblogs.com/orion7/p/7307775.html