Compound Words UVA - 10391

题目大意:有很多单词而且是按照字典序排列的,现在要你找到有哪些单词由两个单词连接而成。

思路:把所有单词放到set中,判断是否可以由其它两个单词组成。substr函数可以分割单词。小优化:既然是按字典序排列的,那么这个单词和上个单词前多少个字母相同的数量就是这个单词所能分割的最大长度。比如 never neverless  oop 那第二个单次所能分割的最大只有5个,opp则不能分割。



#include
#include
#include
#include
using namespace std;
int strcc(string s1,string s2){
	int i=0;
	int len=min(s1.length(),s2.length());
	for(;i s;
	string s1;
	while(cin>>s1) s.insert(s1);
	set::iterator i,j;
	for(i=j=s.begin(),j++;j!=s.end();i++,j++){
		string s3=*i;
		string s2=*j;
		//cout<


你可能感兴趣的:(其他)