我是靠谱客的博主 酷酷可乐,最近开发中收集的这篇文章主要介绍计蒜客 Minimum Distance in a Star Graph 2017icpc南宁赛区 字符串bfs,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

https://nanti.jisuanke.com/t/17317

题意:又是一长串阅读理解。总之,给你两个数字a,b。操作:a的第一位数字可与其它位交换。现在求最小的操作次数使a=b。

题解:bfs,顺便记录已经出现过的数字(剪枝)。

代码:

#include<set>
#include<map>
#include<stack>
#include<queue>
#include<vector>
#include<string>
#include<bitset>

#include<algorithm>
#include<cstring>
#include<cstdio>
#include<cmath>
#include<ctime>

#include<iomanip>
#include<iostream>

#define debug cout<<"aaa"<<endl
#define d(a) cout<<a<<endl
#define pb push_back
#define mem(a,b) memset(a,b,sizeof(a))
#define LL long long
#define lson l,mid,root<<1
#define rson mid+1,r,root<<1|1
#define MIN_INT (-2147483647-1)
#define MAX_INT 2147483647
#define MAX_LL 9223372036854775807i64
#define MIN_LL (-9223372036854775807i64-1)
using namespace std;

const int N = 9 + 5;
const int mod = 1000000000 + 7;
const double eps = 1e-8;
int n;

struct node{
	string a;
	int len;
}a,b,temp;

set<string> s;

int bfs(){
	queue<node> q;
	q.push(a);
	s.insert(a.a);
	while(!q.empty()){
		a=q.front();q.pop();
		if(a.a==b.a){
			return a.len;
		}
		for(int i=1;i<n;i++){
			temp.a=a.a;
			temp.len=a.len+1;
			swap(temp.a[0],temp.a[i]);
			if(s.find(temp.a)==s.end()){
				s.insert(temp.a);
				q.push(temp);
			}
		}
	}
	return 0;
}

int main(){
	scanf("%d",&n);
	for(int i=1;i<=5;i++){
		s.clear();
		a.len=b.len=0;
		cin>>a.a>>b.a;
		printf("%dn",bfs());
	}
	return 0;
}


最后

以上就是酷酷可乐为你收集整理的计蒜客 Minimum Distance in a Star Graph 2017icpc南宁赛区 字符串bfs的全部内容,希望文章能够帮你解决计蒜客 Minimum Distance in a Star Graph 2017icpc南宁赛区 字符串bfs所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(73)

评论列表共有 0 条评论

立即
投稿
返回
顶部