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

hdu 1251 统计难题 (map水过)

时间:2014-08-15 22:34:19      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:hdu   map   

# include <stdio.h>
# include <algorithm>
# include <string.h>
# include <map>
# include <iostream>
using namespace std;
int main()
{
    char a;
    string  x;
    map<string,int>q;
    while(true)
    {
        scanf("%c",&a);
        if(a=='\n')
        {
            scanf("%c",&a);
            x="";//一个结束x初始化
        }
        if(a=='\n')//连续两个\n结束了母串的输入
            break;
        x+=a;
        q[x]+=1;
    }
    while(cin>>x)
        printf("%d\n",q[x]);
    return 0;
}

hdu 1251 统计难题 (map水过),布布扣,bubuko.com

hdu 1251 统计难题 (map水过)

标签:hdu   map   

原文地址:http://blog.csdn.net/lp_opai/article/details/38591599

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