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
主要用到了vector和map,但还是很不熟练,今后还需要多做练习,反复琢摩。
#include<iostream>
#include<string>
#include<cctype>
#include<vector>
#include<map>
#include<algorithm>
using namespace std; map<string,int> cnt;
vector<string> words; //将单词s标准化
string repr(const string&s){
string ans=s;
for(int i=;i<ans.length();i++)
ans[i]=tolower(ans[i]);
sort(ans.begin(),ans.end());
return ans;
} int main(){
int n=;
string s;
while(cin>>s){
if(s[]=='#') break;
words.push_back(s);
string r=repr(s);
if(!cnt.count(r)) cnt[r]=;
cnt[r]++;
}
vector<string> ans;
for(int i=;i<words.size();i++)
if(cnt[repr(words[i])]==) ans.push_back(words[i]);
sort(ans.begin(),ans.end());
for(int i=;i<ans.size();i++)
cout<<ans[i]<<"\n";
return ;
}
												

最新文章

  1. (error) MISCONF Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled. Please check Redis logs for details about t
  2. navigationView 的使用和布局文件的绑定
  3. 构建第一个maven工程
  4. Linux(Ubuntu)安装并破解 SecureFX
  5. 一些时间的概念与区分(UTC、GMT、LT、TAI等)
  6. POJ2407&ndash;Relatives(欧拉函数)
  7. 08_使用TCP/IP Monitor监视SOAP协议
  8. JavaScript基础——变量、语句、注释
  9. js中json的添加和指定位置的删除
  10. h5-canvas(其他api)
  11. 加壳工具-Virbox Protector Standalone
  12. Apache log4net&trade; 手册&mdash;&mdash;介绍【翻译】
  13. Spring Batch 远程分区和远程分块的区别
  14. MySQL篇,第一章:数据库知识1
  15. Uploading File using Ajax and receiving binary data in Asp.net (C#)[转]
  16. 缓存知识整理(包含Redis)
  17. 6. 使用antd pro构建web页面
  18. RUP
  19. go 学习笔记(1)--package
  20. xutil3 post 和 get请求

热门文章

  1. PHP学习(4)——数组的使用
  2. 【LOJ】#3087. 「GXOI / GZOI2019」旅行者
  3. PAT A1001 A+B Format (20 分)
  4. PyCharm 格式化代码 常用快捷键
  5. WebMvcConfigurationSupport跨域和fastjson全局替换
  6. [多平台]pymo – 手机上的 GalGame 引擎
  7. 深入理解计算机系统 第十一章 网络编程 part2 第二遍
  8. 在react项目当中做导航守卫
  9. 怎样理解DOM
  10. HashMap的四种遍历方式