(DFS,BFS) POJ 1426 POJ 3126 題解
阿新 • • 發佈:2018-12-26
Find The Multiple POJ 1426 方法:DFS
題目連結
Prime Path POJ - 3126 方法:BFS
題目連結
POJ-1426
//可以先打表試試要不要用到高精度演算法(打表證明最長的可能也不會超過unsigned long long)
#include <iostream>
using namespace std;
typedef long long ll;
bool tag=false;
void dfs(unsigned long long x,ll n,ll k)
{
if(tag)
return ;
if(!(x%n)) //說明查詢到了,那麼就可以輸出了
{
tag=true;
cout<<x<<endl;
return ;
}
else if(k==19) //搜尋到最大的10的19次就停止
return ;
else
{
dfs(x*10,n,k+1); //兩種深度搜索的可能性,一種是後面加0,還有一種是後面加1
dfs(x*10+1,n,k+1);
}
}
int main()
{
int n;
while (cin>>n && n)
{
tag=false;
dfs(1,n,0);
}
return 0;
}
POJ - 3126 方法:BFS
#include <iostream>
#include <queue>
#include <cstring>
using namespace std;
const int maxn=1e4+5;
bool isprime[maxn];
int prime[maxn];
int tot=0;
bool vis[maxn];
void ss() //素數篩先統計出 1000~9999範圍內誰是素數
{
for(int i=2;i<=9999;i++){
if(!isprime[i])
prime[tot++]=i;
for(int j=0;j<tot && i*prime[j]<=9999 ; j++){
isprime[prime[j]*i]=1;
if(!(i%prime[j]))
break;
}
}
}
struct number{
int x;
int steps;
number(int xx,int step):x(xx),steps(step){}
};
int n,k;
void bfs()
{
queue < number > q;
q.push(number(n,0));
vis[n]=1;
while(!q.empty()){
number temp=q.front();
q.pop();
if(temp.x==k){ //說明跑到最後的素數終點
cout<<temp.steps<<endl;
return ;
}
else{
int temp10=10;
for(int i=1;i<=4;i++){//一個數的每一位都要加入到佇列裡
int y=temp.x/temp10*temp10+temp.x%(temp10/10);
for(int j=0;j<=9;j++){
int s=y+j*(temp10/10);
if( s>=1000 && !isprime[y+j*(temp10/10)] && !vis[y+j*(temp10/10)] ){
q.push(number(y+j*(temp10/10),temp.steps+1));
vis[y+j*(temp10/10)]=1;
}
}
temp10*=10;
}
}
}
}
int main()
{
ss();
int T;
cin>>T;
while(T--){
cin>>n>>k;
bfs();
memset(vis,0,sizeof(vis));
}
return 0;
}