B. Two Buttons1400 / 简单的bfs

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. Two Buttons1400 / 简单的bfs相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/520/B

#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
const int N=1e5+10;
LL n,m,dist[N];
int bfs(int n)
{
	unordered_map<int,int>mp;
	queue<int>q;
	q.push(n),mp[n]++,dist[n]=0;
	while(q.size())
	{
		int x=q.front(); q.pop();
		if(x==m) return dist[x];
		int dx[2]={-1,x};
		for(int i=0;i<2;i++)
		{
			int tempx=x+dx[i];
			if(tempx<0) continue;
			if(tempx>=N) continue;
			if(mp[tempx]) continue;
			dist[tempx]=dist[x]+1;
			q.push(tempx),mp[tempx]++;
		}
	}
}
int main(void)
{
	cin>>n>>m;
	cout<<bfs(n);
	return 0;
}

以上是关于B. Two Buttons1400 / 简单的bfs的主要内容,如果未能解决你的问题,请参考以下文章

B. Buttons

B. Swaps1400 / 双指针 思维

B. Books1400 / 二分答案

B. Han Solo and Lazer Gun1400 / 计算几何

B. Quasi Binary1400 / 贪心

B. Subsequence Hate1400 / 贪心