加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
跳石板.cpp 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
墨澜1024 提交于 2022-05-27 07:10 . 跳石板
#include<iostream>
#include<vector>
#include<limits.h>
#include<math.h>
using namespace std;
void get_div_num(int v, vector<int>& a)
{
for (int i = 2; i <= sqrt(v); ++i)
{
if (v % i == 0)
{
a.push_back(i);
if (v / i != i)
{
a.push_back(v / i);
}
}
}
}
int Jump(int n, int m)
{
vector<int> res(m + 1, INT_MAX);
res[n] = 0;
for (int i = n; i < m; ++i)
{
if (res[i] == INT_MAX)
{
continue;
}
vector<int> a;
get_div_num(i, a);
for (int j = 0; j < a.size(); ++j)
{
if (a[j] + i <= m && res[a[j] + i] != INT_MAX)
{
res[a[j] + i] = min(res[a[j] + i], res[i] + 1);
}
else if (a[j] + i <= m)
{
res[a[j] + i] = res[i] + 1;
}
}
}
return res[m] == INT_MAX ? -1 : res[m];
}
int main()
{
int n, m;
int count = 0;
while (cin >> n >> m)
{
count = Jump(n, m);
cout << count << endl;
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化