uva10391
Posted 这个萌新逼很帅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uva10391相关的知识,希望对你有一定的参考价值。
//两重for遍历tle
//a alien born less lien never nevertheless new newborn the zebra
//60ms
#include <iostream>
#include <set>
#include <string>
using namespace std;
set<string> arr, ans;
int main()
{
string t;
while (cin >> t)
arr.insert(t);
set<string>::iterator it=arr.begin();
for (it++;it != arr.end();it++)//第一个不必拆
{
string s = *it;
int len = s.size();
for (int j = 1;j < len;j++)
{
string s1 = s.substr(0, j), s2 = s.substr(j);
if (arr.count(s1) && arr.count(s2)) { ans.insert(s); break; }
}
}
for (it = ans.begin();it != ans.end();it++)
cout << *it << endl;
return 0;
}
以上是关于uva10391的主要内容,如果未能解决你的问题,请参考以下文章
紫书第五章训练 uva 10391 Compound Words by crq