hdu 1247 map

818786asia2562219CAccepted4464 KB218 msC++615 B2012-11-17 16:05:08

写个了字典树 但又发现map 这个以前没用过的 容器 很好用

map 建立 key-value 的关系表 在log[N]内查找出value

这里用单词做key,value为1

及其简洁的查找子串是否存在(就是个懒)。。。

View Code
#include<cstdio>
#include<cstring>
#include<string>
#include<cstdlib>
#include<algorithm>
#include<iostream>
#include<map>
using namespace std;
#define MAXN 1111111
string word[50111];
map<string,int> m;

int main()
{
    int tot=0,i,aa=0,j;
    while(cin>>word[tot++]/*,word[tot-1]!="#"*/)
    {
        m[word[tot-1]]=1;
    }


    for(i=0;i<tot;i++)
        for(j=1;j<word[i].length();j++)
        //cout<<word[i].substr(0,j)<<' '<<word[i].substr(j)<<endl;
        if(m[word[i].substr(0,j)]==1&&m[word[i].substr(j)]==1)
         {
            cout<<word[i]<<endl;
            break;
         }

    return 0;
}

转载于:https://www.cnblogs.com/TO-Asia/archive/2012/11/17/2774750.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值