HDOJ-三部曲一(搜索、数学)-1008-Prime Path
Prime Path
Time Limit : 2000/1000ms (Java/Other) Memory Limit : 131072/65536K (Java/Other)
Total Submission(s) : 15 Accepted Submission(s) : 13
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.
#include<iostream>
#include<cstring>
#include<cmath>
using namespace std; bool num[10000]={false},f[10000];
int n1,n2;
int que[20000],step[10000],m[10000]; //数组m表示上次变得位数。如果上次变了一位这次还变同一位就没有意义了
void judgeprime() //打标法判断1000到9999各个数是否是素数
{
for(int i=1000;i<10000;i++)
{
for(int j=2;j<=sqrt(i);j++)
{
if(i%j==0)
{
num[i]=false;
break;
}
else
num[i]=true;
}
}
} int BFS()
{
int front=0,rear=1;
step[front]=0;
que[0]=n1;
f[n1]=true;
if(que[front]==n2)
return step[front];
while(front<rear)
{
int t=que[front]/10*10; //变个位
for(int i=0;i<=9;i++)
{
if(num[t]&&!f[t]&&m[front]!=1)
{
que[rear]=t;
f[t]=true;
m[rear]=1;
step[rear]=step[front]+1;
if(que[rear]==n2)
return step[rear];
rear++;
}
t++;
}
t=que[front]/100*100+que[front]%10; //变十位
for(int i=0;i<=9;i++)
{
if(num[t]&&!f[t]&&m[front]!=2)
{
que[rear]=t;
f[t]=true;
m[rear]=2;
step[rear]=step[front]+1;
if(que[rear]==n2)
return step[rear];
rear++;
}
t+=10;
}
t=que[front]/1000*1000+que[front]%100; //变百位
for(int i=0;i<=9;i++)
{
if(num[t]&&!f[t]&&m[front]!=3)
{
que[rear]=t;
f[t]=true;
m[rear]=3;
step[rear]=step[front]+1;
if(que[rear]==n2)
return step[ rear];
rear++;
}
t+=100;
}
t=1000+que[front]%1000;
for(int i=0;i<=8;i++) //变千位
{
if(num[t]&&!f[t]&&m[front]!=4)
{
que[rear]=t;
f[t]=true;
m[rear]=4;
step[rear]=step[front]+1;
if(que[rear]==n2)
return step[rear];
rear++;
}
t+=1000;
}
front++;
}
} int main()
{
judgeprime();
int T;
cin>>T;
/*for(int i=1000;i<10000;i++)
if(num[i])
cout<<i<<' ';*/
while(T--)
{
cin>>n1>>n2;
memset(que,0,sizeof(que));
memset(f,false,sizeof(f));
memset(step,0,sizeof(step));
memset(m,0,sizeof(m));
cout<<BFS()<<endl;
}
}
HDOJ-三部曲一(搜索、数学)-1008-Prime Path的更多相关文章
- (广度搜索)A - Prime Path(11.1.1)
A - Prime Path(11.1.1) Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64 ...
- Prime Path 分类: 搜索 POJ 2015-08-09 16:21 4人阅读 评论(0) 收藏
Prime Path Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 14091 Accepted: 7959 Descripti ...
- poj 3126 Prime Path(搜索专题)
Prime Path Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 20237 Accepted: 11282 Desc ...
- POJ 3126:Prime Path
Prime Path Time Limit: 1000MS Memory Limit: 65536KB 64bit IO Format: %I64d & %I64u Submit St ...
- [HDU 1973]--Prime Path(BFS,素数表)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1973 Prime Path Time Limit: 5000/1000 MS (Java/Others ...
- Prime Path (poj 3126 bfs)
Language: Default Prime Path Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 11703 Ac ...
- POJ 3216 Prime Path(打表+bfs)
Prime Path Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 27132 Accepted: 14861 Desc ...
- POJ 3126 Prime Path【从一个素数变为另一个素数的最少步数/BFS】
Prime Path Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 26475 Accepted: 14555 Descript ...
- HDU - 1973 - Prime Path (BFS)
Prime Path Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total ...
- POJ3126 Prime Path —— BFS + 素数表
题目链接:http://poj.org/problem?id=3126 Prime Path Time Limit: 1000MS Memory Limit: 65536K Total Submi ...
随机推荐
- 学习HTML5之新特性标签一览(详细)
HTML5又2008年诞生,HTML5大致可以等同于=html+css3+javascriptapi.... so --->支持css3强大的选择器和动画以及javascript的新的函数 先来 ...
- Farseer.Net
Farseer.Net V0.2 ORM开源框架 目录 http://www.cnblogs.com/steden/archive/2013/01/22/2871160.html V1.0教程:htt ...
- SQL数据库第一部分
数据库:程序用来存取数据的 ACCESS:自带,比较小,不是很专业 SQL Server:主要用在.NET语言中,比较专业.微软开发 MYSQL:主要用在PHP语言中,比SQL server体积比较小 ...
- BZOJ1066 [SCOI2007]蜥蜴
首先...这是道(很水的)网络流 我们发现"每个时刻不能有两个蜥蜴在同一个柱子上"这个条件是没有用的因为可以让外面的先跳,再让里面的往外跳 但是还有柱子高度的限制,于是把柱子拆点为 ...
- [示例]创建Student类,输入学生信息并存入字典,将3个存有学生信息的字典存入数组,并计算
代码: main: #import <Foundation/Foundation.h> #import "Student.h" int main(int argc, c ...
- 铁人系列 (1) uva 10385
uva 10385 列出n-1个一元方程,对应成单峰函数,所以用三分求解即可. #include <cstdio> #include <cstring> #include & ...
- js基础之DOM
一.创建子节点 发帖在顶部显示: var oBtn = document.getElementById('btn1'); var oUl = document.getElementById('ul1' ...
- 套汇问题 Floyd
问题:套汇. 思路:Floyd 代码: #include <cstdio> #include <cstdlib> #include <ctime> #define ...
- C#Winform从页面获取数据,传入数据库
环境: 1.SQLite数据库新建数据表,设置相应的字段.(其他数据库形式都相似,using相应数据库的包即可) 2.页面有两个textBox:textBox1.textBox2, 3.一个保存按钮: ...
- ros与下位机通信常用的c++ boost串口应用
一.首先移植c++ boost 库: 1. 先去 Boost官网 下载最新的Boost版本, 我下载的是boost_1_6_0版本, 解压. 2. 进入解压后目录: cd boost_1_6_0, 执 ...