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

[51NOD1095] Anigram单词(map)

时间:2016-10-26 16:48:08      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:string   相减   log   its   clear   max   http   ret   span   

题目链接:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1095

字典的单词在map中排序和不排序各存1次,查的时候相减。

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 
 4 const int maxn = 10100;
 5 int n, q;
 6 char tmp[12];
 7 map<string, int> d1;
 8 map<string, int> d2;
 9 
10 int main() {
11   // freopen("in", "r", stdin);
12   while(~scanf("%d",&n)) {
13     d1.clear(); d2.clear();
14     for(int i = 0; i < n; i++) {
15       scanf("%s", tmp);
16       d1[tmp]++;
17       sort(tmp, tmp+strlen(tmp));
18       d2[tmp]++;
19     }
20     scanf("%d",&q);
21     while(q--) {
22       scanf("%s", tmp);
23       int a = d1[tmp];
24       sort(tmp, tmp+strlen(tmp));
25       int b = d2[tmp];
26       printf("%d\n", b-a);
27     }
28   }
29   return 0;
30 }

 

[51NOD1095] Anigram单词(map)

标签:string   相减   log   its   clear   max   http   ret   span   

原文地址:http://www.cnblogs.com/kirai/p/6000568.html

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