#include <iostream>
#include <string>
#include <vector>
#include <stack>
#include <queue>
#include <deque>
#include <set>
#include <map>
#include <algorithm>
#include <sstream>
#include <utility>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cctype>
//#include "ChenHC.h"
#define CLOSE() ios::sync_with_stdio(false)
#define CLEAR(a, b) memset(a, b, sizeof(a))
#define IN() freopen("in.txt", "r", stdin)
#define OUT() freopen("out.txt", "w", stdout)
const int maxn = 1e5 + 5;
using LL = long long;
using UI = unsigned int;
using namespace std;
//------------------------------------------------------------------------------------------//
//直接组合超时,改用拆分的思想就能过。
set<string> word;
int main() {
string s;
while (cin >> s) word.insert(s);
int beg = 0;
string s1, s2;
for (auto i &#
习题5-5 复合词(Compound Words, UVa 10391)
最新推荐文章于 2024-04-29 12:18:53 发布
该程序使用C++解决UVa在线判题平台上的10391题,通过拆分字符串查找复合词。程序首先读取一组单词,然后检查每个单词是否能由两个已知的子单词组成。如果可以,就输出这个复合词。
摘要由CSDN通过智能技术生成