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

UVA - 10391:Compound Words (字符串水题)

时间:2020-06-02 00:15:30      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:size   rds   pen   lse   左右   c++   main   长度   pac   

题目大意

给定若干单词,按字典序输出由两个单词拼接而成的单词

思路分析

用set存储所有单词,枚举每个单词word,遍历word的所有左右子串组合情况,若左右子串均在set中,说明符合题意。时间复杂度O(n*len*len),len为单词长度,n为单词总个数

#include<bits/stdc++.h>
using namespace std;
set<string> _set;//存储 查询
string s;
int main() {
    freopen("in.txt", "r", stdin);
    while (cin >> s)_set.insert(s);
    for (auto p : _set) {
        bool isCpdword = false;
        for (int i = 0; i < p.size() - 1 && !isCpdword; i++) { // 遍历所有左右组合
            if (_set.find(p.substr(0, i + 1)) != _set.end() && _set.find(p.substr(i + 1)) != _set.end()) // 左右字符串均存在 
                isCpdword = true;
        }
        if (isCpdword) printf("%s\n", p.c_str());
    }
    return 0;
}

UVA - 10391:Compound Words (字符串水题)

标签:size   rds   pen   lse   左右   c++   main   长度   pac   

原文地址:https://www.cnblogs.com/RioTian/p/13028244.html

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