当前位置:网站首页>Acwing 4300. Two operations
Acwing 4300. Two operations
2022-07-05 05:20:00 【hunziHang】
Given a positive integer n, We hope you can through a series of operations , Change it to another positive integer m.
There are two kinds of operations :
1. Multiply the current number by 2
2. Subtract... From the current number 1
requirement , During the transformation , The number is always positive .
Please calculate , The minimum number of operations required .
Input format :
a line , Two different positive integers n and m.
Output format :
An integer , Indicates the minimum number of operations required .
Data range :
front 6 Test points meet 1≤n,m≤10.
All test points meet 1≤n,m≤10000.
sample input 1:
4 6
sample output 1:
2
sample input 2:
10 1
sample output 2:
9
1. greedy
prove : When n>m when , And m For even when , be /2.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=1e6+100;
typedef pair<int,int> PII;
#define x first
#define y second
#define INF 0x3f3f3f3f
int dx[4]={-1,0,1,0};
int dy[4]={0,1,0,-1};
const int mod=1e9+7;
int n,m;
int cnt;
int main()
{
cin>>n>>m;
if(n>=m) cout<<n-m<<endl;
else // Back to
{
while(n<m) //n>=m It can be converted to the first two cases
{
if(m&1) m++; // If m It's odd , Can not /2,n*2 The number changed must be even .
else m/=2; // An even number is ok /2.
cnt++;
}
cout<<cnt+n-m<<endl; // Switch to the first two cases
}
return 0;
}
2. Search for Wide search
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=20100;
typedef pair<int,int> PII;
#define x first
#define y second
#define INF 0x3f3f3f3f
int dx[4]={-1,0,1,0};
int dy[4]={0,1,0,-1};
const int mod=1e9+7;
int n,m;
int d[N],q[N];
int main()
{
cin>>n>>m;
int hh=0,tt=0;
memset(d,0x3f,sizeof d); // Initial array , Easy to update
d[n]=0; // Starting from 0.
q[0]=n; // The starting point joins the queue .
while(hh<=tt)
{
int t=q[hh++];
int change[]={t-1,t*2}; // Use an array to represent two operations , Convenient operation
for(auto i:change)
{
if(i>=1&i<N&&d[i]>d[t]+1) // 2*n<2*m Maximum enumeration to 2e4
{
d[i]=d[t]+1; // If the conditions are met, it will be updated
q[++tt]=i; // Join the queue
}
}
}
cout<<d[m]<<endl;
return 0;
}
边栏推荐
- TF-A中的工具介绍
- Under the national teacher qualification certificate in the first half of 2022
- Service fusing hystrix
- cocos_ Lua loads the file generated by bmfont fnt
- Research on the value of background repeat of background tiling
- Use of room database
- Haut OJ 1350: choice sends candy
- Embedded database development programming (VI) -- C API
- Remote upgrade afraid of cutting beard? Explain FOTA safety upgrade in detail
- Es module and commonjs learning notes
猜你喜欢
Merge sort
C语言杂谈1
Do a small pressure test with JMeter tool
Ue4/ue5 illusory engine, material part (III), material optimization at different distances
Applet Live + e - commerce, si vous voulez être un nouveau e - commerce de détail, utilisez - le!
[转]MySQL操作实战(一):关键字 & 函数
十年不用一次的JVM调用
sync.Mutex源码解读
The present is a gift from heaven -- a film review of the journey of the soul
[turn to] MySQL operation practice (I): Keywords & functions
随机推荐
64 horses, 8 tracks, how many times does it take to find the fastest 4 horses at least
2022/7/2 question summary
[depth first search] 695 Maximum area of the island
使用命令符关闭笔记本自带键盘命令
Find a good teaching video for Solon framework test (Solon, lightweight application development framework)
BUUCTF MISC
Add level control and logger level control of Solon logging plug-in
Under the national teacher qualification certificate in the first half of 2022
[leetcode] integer inversion [7]
Introduction to memory layout of FVP and Juno platforms
记录QT内存泄漏的一种问题和解决方案
Haut OJ 1218: maximum continuous sub segment sum
【ES实战】ES上的native realm安全方式使用
Applet live + e-commerce, if you want to be a new retail e-commerce, use it!
Haut OJ 1221: a tired day
Simple HelloWorld color change
PMP考试敏捷占比有多少?解疑
2022/7/1學習總結
Generate filled text and pictures
Use of snippets in vscode (code template)