欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

HDOJ 1247 HDU 1247 Hat’s Words ACM 1247 IN

系統 2690 0

MiYu原創, 轉帖請注明 : 轉載自? ______________白白の屋 ?? ??

?

題目地址 :

?? ? http://acm.hdu.edu.cn/showproblem.php?pid=1247?

題目描述:

Hat’s Words

Time Limit: 2000/1000 MS (Java/Others)????Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 1384????Accepted Submission(s): 506


Problem Description
A hat’s word is a word in the dictionary that is the concatenation of exactly two other words in the dictionary.
You are to find all the hat’s words in a dictionary.
?

Input
Standard input consists of a number of lowercase words, one per line, in alphabetical order. There will be no more than 50,000 words.
Only one case.
?

Output
Your output should contain all the hat’s words, one per line, in alphabetical order.
?

Sample Input
              
a ahat hat hatword hziee word
?

Sample Output
              
ahat hatword
?

題目分析 :

??

?? ? ? ?字典樹的題目, 這個題的方法比較暴力, ?在輸入的時候將每個單詞都加入字典樹, ?并用數組將所有的串都存起來來.

在輸入完成后, ?對每個單詞進行拆分, 也就是暴力枚舉單詞不同位置的前后部分, 看在字典樹中是否存在, 存在即輸出.

不過貌似數據比較弱, 說是按字典順序輸出, 但其實他的輸入本就是按字典順序輸入的, 所以將排序也面了 , 呵呵.

?? ?另外,其實這題用STL 做更簡單, 當然追求效率除外.

trie 代碼:

?/*

MiYu原創, 轉帖請注明 : 轉載自 ______________白白の屋

?? ? ? ? ?http://www.cnblog.com/MiYu

Author By : MiYu

Test ? ? ?: 1

Program ? : 1247

*/


#include <iostream>

#include <algorithm>

#include <string>

using namespace std;

typedef struct dictor DIC;

DIC *root = NULL;

struct dictor {

?? ? ? dictor (){ exist = false; memset ( child , 0 , sizeof ( child ) ); }

?? ? ? void insert ( char *ins );

?? ? ? bool find ( const char *ins );

private:

?? ? ? DIC *child[26];

?? ? ? bool exist;?

};

void dictor::insert ( char *ins )

{

?? ? ? ? ? ?DIC *cur = root,*now;

?? ? ? ? ? ?int len = strlen ( ins );

?? ? ? ? ? ?for ( int i = 0; i < len; ++ i )

?? ? ? ? ? ?{

?? ? ? ? ? ? ? ? ?if ( cur->child[ ins[i] - 'a' ] != NULL )?

?? ? ? ? ? ? ? ? ?{

?? ? ? ? ? ? ? ? ? ? ? cur = cur->child[ ins[i] - 'a' ];

?? ? ? ? ? ? ? ? ?}

?? ? ? ? ? ? ? ? ?else

?? ? ? ? ? ? ? ? ?{

?? ? ? ? ? ? ? ? ? ? ? now = new DIC;

?? ? ? ? ? ? ? ? ? ? ? cur->child[ ins[i] - 'a' ] = now;

?? ? ? ? ? ? ? ? ? ? ? cur = now;

?? ? ? ? ? ? ? ? ?}

?? ? ? ? ? ?}?

?? ? ? ? ? ?cur->exist = true;

}

bool dictor::find ( const char *ins )

{

?? ? ? ? ? ?DIC *cur = root;

?? ? ? ? ? ?int len = strlen ( ins );

?? ? ? ? ? ?for ( int i = 0; i < len; ++ i )

?? ? ? ? ? ?{

?? ? ? ? ? ? ? ? if ( cur->child[ ins[i] - 'a' ] != NULL )

?? ? ? ? ? ? ? ? ? ? ?cur = cur->child[ ins[i] - 'a' ]; ?

?? ? ? ? ? ? ? ? else

?? ? ? ? ? ? ? ? ? ? ?return false;?

?? ? ? ? ? ?}?

?? ? ? ? ? ?return cur->exist;

}

char words[50050][100];

char s1[100],s2[100];

DIC dict;

int main ()

{

?? ?root = &dict;

?? ?int n = 0;

?? ?while ( scanf ( "%s",words[n] ) != EOF )

?? ?{

?? ? ? ? ? ?dict.insert ( words[n++] );

?? ?}

?? ?for ( int i = 0; i < n; ++ i )

?? ?{

?? ? ? ? ?int len = strlen ( words[i] );

?? ? ? ? ?for ( int j = 1; j < len; ++ j )

?? ? ? ? ?{

?? ? ? ? ? ? ? ?memset ( s1, 0, sizeof ( s1 ) );

?? ? ? ? ? ? ? ?memset ( s2, 0, sizeof ( s2 ) );

?? ? ? ? ? ? ? ?strncpy ( s1, words[i], j );

?? ? ? ? ? ? ? ?strcpy ( s2, words[i]+j );

?? ? ? ? ? ? ? ?if ( dict.find ( s1 ) && dict.find ( s2 ) )

?? ? ? ? ? ? ? ?{

?? ? ? ? ? ? ? ? ? ? printf ( "%s\n", words[i] );

?? ? ? ? ? ? ? ? ? ? break;?

?? ? ? ? ? ? ? ?}

?? ? ? ? ?} ?

?? ?} ?

?? ?//system ( "pause" );

?? ?return 0;

}


STL ?代碼 :

?

?/*

MiYu原創, 轉帖請注明 : 轉載自 ______________白白の屋

?? ? ? ? ?http://www.cnblog.com/MiYu

Author By : MiYu

Test ? ? ?: 2

Program ? : 1247

*/


#include <iostream>

#include <string>

#include <map>

using namespace std;

map < string , int > mp;

string str[50005];

int main ()

{

?? ?int n = 0;

?? ?while ( cin >> str[n] ) mp[ str[n++] ] = 1;

?? ?for ( int i = 0; i < n; ++ i )

?? ?{

?? ? ? ? ?unsigned len = str[i].size ();

?? ? ? ? ?for ( unsigned j = 1; j < len; ++ j )

?? ? ? ? ?{

?? ? ? ? ? ? ? string s1 ( str[i], 0, j );

?? ? ? ? ? ? ? string s2 ( str[i], j );

?? ? ? ? ? ? ? if ( mp[s1] == 1 && mp[s2] == 1 )

?? ? ? ? ? ? ? {

?? ? ? ? ? ? ? ? ? ?cout << str[i] << endl;?

?? ? ? ? ? ? ? ? ? ?break;

?? ? ? ? ? ? ? }

?? ? ? ? ?}?

?? ?}

?? ?return 0;

}


?

?

HDOJ 1247 HDU 1247 Hat’s Words ACM 1247 IN HDU


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 色两性午夜视频免费观看 | 国产九九九 | 五月天色丁香 | 亚洲欧美视频一区 | 亚洲国产成人va在线观看网址 | 视频在线观看一区二区 | 亚洲欧美一区在线 | 国产精品免费入口视频 | 欧美成人一级视频 | 欧美国产精品一区二区免费 | 婷婷精品国产一区二区三区日韩 | 国产精品亚洲精品日韩已方 | 中文字幕在线一区二区三区 | 国产一区二区三区视频 | 九九九久久久久久久爱 | 国产福利区一区二在线观看 | 99影视在线视频免费观看 | 精品久久久久久久久久 | 成人性a激情免费视频 | 国产精品欧美亚洲日本综合 | 美女羞羞网站妖精视频 | 一级黄色淫片 | 亚洲一区日韩 | 国产成人91激情在线播放 | 在线高清免费观看视频 | 精品一区二区久久久久久久网站 | 丝袜美腿一区二区三区 | 亚洲精品综合网 | 国产精品视频播放 | 国产2区| 国产成人一区二区三区 | 成人一区二区三区四区 | 97se亚洲综合在线韩国专区福利 | 欧美成人精品二区三区99精品 | 日日爱视频 | japanese末成年free| 成人福利视频在线看高清观看 | 午夜精品久久久久久久99黑人 | 天堂资源最新在线 | 天天草天天| 久久夜色精品国产亚洲 |