POJ 3126 Prime Path(BFS)

题目链接:http://poj.org/problem?id=3126

题意:

  给你两个4位数N和M,且这两个数都是素数,问N最少经过多少次变换可以变为M,变换规则是:每次只允许变化个、十、百、千位中的一位,且变换后还是一个素数.

思路:

  以N为根节点,把所有N经过一次变换可以得到的数作为其子节点,再以其第一个子节点为根,依次迭代,构造出一颗解答树,然后求的是最少的变化,所以直接BFS搜索解答树,搜到的第一个答案就是满足题意的最少变换了.

代码:

 1 #include <iostream>
 2 #include <cmath>
 3 #include <cstdio>
 4 #include <cstring>
 5 #include <cstdlib>
 6 #include <stack>
 7 #include <queue>
 8 #include <vector>
 9 #include <algorithm>
10 #include <string>
11 
12 typedef long long LL;
13 typedef unsigned long long ULL;
14 using namespace std;
15 const int MAXN = 10000;
16 int isprime[MAXN + 3];//isprime[i] = 1表示 i 是素数
17 int prime[MAXN], cnt = 0;
18 
19 void getprime() {//预处理素数
20     memset(isprime, 0, sizeof(isprime));
21     for(int i = 2; i <= MAXN; i++) {
22         if(!isprime[i]) prime[++cnt] = i;
23         for(int j = 1; j <= cnt && i * prime[j] <= MAXN; j++) {
24             isprime[i * prime[j]] = 1;
25             if(i % prime[j] == 0)break;
26         }
27     }
28     for(int i = 2; i <= MAXN; i++)
29         isprime[i] = !isprime[i];
30 }
31 
32 int n, k, ans;
33 int visit[MAXN + 3], step[MAXN + 3];//visit[]用于标记已经通过变换得到过的数 step[i]代表 变换到 i 需要的变换次数
34 void BFS(int st) {//从根节点开始搜索
35     memset(visit, 0, sizeof(visit));
36     memset(step, -1, sizeof(step));
37     queue<int> Qu;
38     Qu.push(st);
39     visit[st] = 1, step[st] = 0;
40     while(!Qu.empty()) {
41         int now = Qu.front();
42         Qu.pop();
43         if(now == k) {//找到答案
44             ans = step[now];
45             return;
46         }
47         int a = now / 1000, b = now / 100 % 10, c = now / 10 % 10, d = now % 10;//分离出千、百、十、个位
48         for(int i = 1; i <= 9; i++) {//对千位进行变换
49             if(i == a) continue;
50             int nex = i * 1000 + b * 100 + c * 10 + d;
51             if(!visit[nex] && isprime[nex]) {//变换后的数未被访问过 且是素数
52                 Qu.push(nex);
53                 visit[nex] = 1, step[nex] = step[now] + 1;
54             }
55         }
56         for(int i = 0; i <= 9; i++) {//对百位进行变换
57             if(i == b) continue;
58             int nex = a * 1000 + i * 100 + c * 10 + d;
59             if(!visit[nex] && isprime[nex]) {
60                 Qu.push(nex);
61                 visit[nex] = 1, step[nex] = step[now] + 1;
62             }
63         }
64         for(int i = 0; i <= 9; i++) {//对十位进行变换
65             if(i == c) continue;
66             int nex = a * 1000 + b * 100 + i * 10 + d;
67             if(!visit[nex] && isprime[nex]) {
68                 Qu.push(nex);
69                 visit[nex] = 1, step[nex] = step[now] + 1;
70             }
71         }    
72         for(int i = 0; i <= 9; i++) {//对个位进行变换
73             if(i == d) continue;
74             int nex = a * 1000 + b * 100 + c * 10 + i;
75             if(!visit[nex] && isprime[nex]) {
76                 Qu.push(nex);
77                 visit[nex] = 1, step[nex] = step[now] + 1;
78             }
79         }
80     }
81 }
82 
83 int main() {
84     getprime();
85     int T;
86     scanf("%d", &T);
87     while(T--) {
88         scanf("%d%d", &n, &k);
89         ans = -1;
90         BFS(n);
91         ans >= 0 ? printf("%d\n", ans) : printf("Impossible\n");
92     }
93     return 0;
94 }

 

转载于:https://www.cnblogs.com/Ash-ly/p/5735991.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在MATLAB中,NURBS(非均匀有理B样条)是一种强大的数学工具,用于表示和处理复杂的曲线和曲面。NURBS在计算机图形学、CAD(计算机辅助设计)、CAM(计算机辅助制造)等领域有着广泛的应用。下面将详细探讨MATLAB中NURBS的绘制方法以及相关知识点。 我们需要理解NURBS的基本概念。NURBS是B样条(B-Spline)的一种扩展,其特殊之处在于引入了权重因子,使得曲线和曲面可以在不均匀的参数空间中进行平滑插值。这种灵活性使得NURBS在处理非均匀数据时尤为有效。 在MATLAB中,可以使用`nurbs`函数创建NURBS对象,它接受控制点、权值、 knot向量等参数。控制点定义了NURBS曲线的基本形状,而knot向量决定了曲线的平滑度和分布。权值则影响曲线通过控制点的方式,大的权值会使曲线更靠近该点。 例如,我们可以使用以下代码创建一个简单的NURBS曲线: ```matlab % 定义控制点 controlPoints = [1 1; 2 2; 3 1; 4 2]; % 定义knot向量 knotVector = [0 0 0 1 1 1]; % 定义权值(默认为1,如果未指定) weights = ones(size(controlPoints,1),1); % 创建NURBS对象 nurbsObj = nurbs(controlPoints, weights, knotVector); ``` 然后,我们可以用`plot`函数来绘制NURBS曲线: ```matlab plot(nurbsObj); grid on; ``` `data_example.mat`可能包含了一个示例的NURBS数据集,其中可能包含了控制点坐标、权值和knot向量。我们可以通过加载这个数据文件来进一步研究NURBS的绘制: ```matlab load('data_example.mat'); % 加载数据 nurbsData = struct2cell(data_example); % 转换为cell数组 % 解析数据 controlPoints = nurbsData{1}; weights = nurbsData{2}; knotVector = nurbsData{3}; % 创建并绘制NURBS曲线 nurbsObj = nurbs(controlPoints, weights, knotVector); plot(nurbsObj); grid on; ``` MATLAB还提供了其他与NURBS相关的函数,如`evalnurbs`用于评估NURBS曲线上的点,`isoparm`用于生成NURBS曲面上的等参线,以及`isocurve`用于在NURBS曲面上提取特定参数值的曲线。这些工具对于分析和操作NURBS对象非常有用。 MATLAB中的NURBS功能允许用户方便地创建、编辑和可视化复杂的曲线和曲面。通过对控制点、knot向量和权值的调整,可以精确地控制NURBS的形状和行为,从而满足各种工程和设计需求。通过深入理解和熟练掌握这些工具,可以在MATLAB环境中实现高效的NURBS建模和分析。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值