• UVa156.Ananagrams


    题目连接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=92

    13913904 156 Ananagrams Accepted C++ 0.009 2014-07-20 15:31:41

     Ananagrams 

    Most crossword puzzle fans are used to anagrams--groups of words with the same letters in different orders--for example OPTS, SPOT, STOP, POTS and POST. Some words however do not have this attribute, no matter how you rearrange their letters, you cannot form another word. Such words are called ananagrams, an example is QUIZ.

    Obviously such definitions depend on the domain within which we are working; you might think that ATHENE is an ananagram, whereas any chemist would quickly produce ETHANE. One possible domain would be the entire English language, but this could lead to some problems. One could restrict the domain to, say, Music, in which case SCALE becomes a relative ananagram (LACES is not in the same domain) but NOTE is not since it can produce TONE.

    Write a program that will read in the dictionary of a restricted domain and determine the relative ananagrams. Note that single letter words are, ipso facto, relative ananagrams since they cannot be ``rearranged'' at all. The dictionary will contain no more than 1000 words.

    Input

    Input will consist of a series of lines. No line will be more than 80 characters long, but may contain any number of words. Words consist of up to 20 upper and/or lower case letters, and will not be broken across lines. Spaces may appear freely around words, and at least one space separates multiple words on the same line. Note that words that contain the same letters but of differing case are considered to be anagrams of each other, thus tIeD and EdiT are anagrams. The file will be terminated by a line consisting of a single #.

    Output

    Output will consist of a series of lines. Each line will consist of a single word that is a relative ananagram in the input dictionary. Words must be output in lexicographic (case-sensitive) order. There will always be at least one relative ananagram.

    Sample input

    ladder came tape soon leader acme RIDE lone Dreis peat
     ScAlE orb  eye  Rides dealer  NotE derail LaCeS  drIed
    noel dire Disk mace Rob dries
    #

    Sample output

    Disk
    NotE
    derail
    drIed
    eye
    ladder
    soon

    解题思路:运用map关联数组,就仿佛开挂一样。简单的操作与排序即可,略水。

     1 #include <iostream>
     2 #include <cstring>
     3 #include <cstdlib>
     4 #include <cctype>
     5 #include <cstdio>
     6 #include <algorithm>
     7 #include <numeric>
     8 #include <cmath>
     9 #include <map>
    10 #include <vector>
    11 using namespace std;
    12 
    13 map<string, int> cnt;
    14 vector<string> words;
    15 
    16 string cal_index(const string& s) {
    17     string ans = s;
    18     for (int i = 0 ; i < ans.size(); ++ i) {
    19         ans[i] = tolower(ans[i]);
    20     }
    21     sort(ans.begin(), ans.end());
    22     return ans;
    23 }
    24 
    25 int main () {
    26     string str;
    27     while (cin >> str) {
    28         if (str == "#") {
    29             break;
    30         }
    31         words.push_back(str);
    32         string sort_str = cal_index(str);
    33         if (!cnt.count(sort_str)) {
    34             cnt[sort_str] = 0;
    35         }
    36         cnt[sort_str] ++;
    37     }
    38 
    39     vector<string> ans;
    40     for (int i = 0 ; i < words.size(); ++ i) {
    41         if (cnt[cal_index(words[i])] == 1) {
    42             ans.push_back(words[i]);
    43         }
    44     }
    45 
    46     sort(ans.begin(), ans.end());
    47     for (int i = 0; i < ans.size(); ++ i) {
    48         cout << ans[i] << endl;
    49     }
    50     return 0;
    51 }


  • 相关阅读:
    当上微软MVP了
    关于南京四校联合程序设计大赛
    毕业生的商业软件开发之路初入职场
    开源XDesigner ORM 框架设计
    中国计算机软件行业分析3软件倾销
    中国计算机软件行业分析6软件外包的缺陷
    搜狐首页出现一个硕大的错别字
    中国计算机软件行业分析4外企的商业贿赂
    大家快来玩转盘抽奖游戏(走在网页游戏开发的路上(七))
    走在网页游戏开发的路上(四)
  • 原文地址:https://www.cnblogs.com/Destiny-Gem/p/3857539.html
Copyright © 2020-2023  润新知