码迷,mamicode.com
首页 > 其他好文 > 详细

UVA 10941 - Words adjustment(BFS+字符串处理)

时间:2014-08-28 21:16:46      阅读:303      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   for   2014   

UVA 10941 - Words adjustment

题目链接

题意:给定两个字符串,在给定一些单词集合,问能否两个单词后面各添加一些单词,使得两个单词变成相同,问添加单词最少几次,单词要来自单词集合

思路:广搜,记录状态为两个字符串之间差的字符,利用set和string去乱搞。。即可

代码:

#include <cstdio>
#include <cstring>
#include <string>
#include <iostream>
#include <queue>
#include <algorithm>
#include <set>
using namespace std;

int t;
set<string> s, vis;
string x, y;

void init() {
	cin >> x >> y;
	string tmp;
	int q;
	cin >> q;
	s.clear();
	while (q--) {
		cin >> tmp;
		s.insert(tmp);
	}
}

struct State {
	string str;
	int val;
	State() {}
	State (string str, int val) {
		this->str = str;
		this->val = val;
	}
};

int solve() {
	queue<State> Q;
	if (x.length() > y.length())
		Q.push(State(x.substr(y.length()), 0));
	else Q.push(State(y.substr(x.length()), 0));
	vis.clear();
	vis.insert(Q.front().str);
	while (!Q.empty()) {
		State u = Q.front();
		Q.pop();
		if (u.str == "")
			return u.val;
		set<string>::iterator now = s.lower_bound(u.str);
		for (set<string>::iterator it = now;
				it != s.end() && it->substr(0, u.str.length()) == u.str; it++) {
			string tmp = it->substr(u.str.length());
			if (vis.find(tmp) == vis.end()) {
				vis.insert(tmp);
				Q.push(State(tmp, u.val + 1));
			}
		}
		for (int i = u.str.length(); i > 0; i--) {
			set<string>::iterator it = s.find(u.str.substr(0, i));
			if (it != s.end()) {
				string tmp = u.str.substr(it->length());
				if (vis.find(tmp) == vis.end()) {
					vis.insert(tmp);
					Q.push(State(tmp, u.val + 1));
				}
			}
		}
	}
	return -1;
}

int main() {
	scanf("%d", &t);
	while (t--) {
		init();
		cout << solve() << endl;
	}
	return 0;
}


UVA 10941 - Words adjustment(BFS+字符串处理)

标签:style   blog   http   color   os   io   ar   for   2014   

原文地址:http://blog.csdn.net/accelerator_/article/details/38902907

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!