At the start of each school year, a very important event happens at Hogwarts. Each of the first-year wizards and witches is assigned to one of the four Hogwarts houses. The bravest children are put
to Gryffindor, the cleverest are put to Ravenclaw, the most hard-working go to Hufflepuff, and Slytherin becomes home to the most ambitious. The assignment is carried out in the Great Hall of Hogwarts castle in the following way: when the name of a first-year
student is called, he or she comes out to the center of the Hall and puts on the famous Sorting Hat. The Hat estimates the situation in the head of the young wizard or witch and cries out the name of the house to which the student is assigned. A special elf
writes down the Hat's decisions. After the sorting, the elf must quickly compile lists of students of each house. Members of the Society for the Promotion of Elfish Welfare beg you to help the elf in this hard work.
Input
The first line contains the number of first-year studentsN(1 ≤N≤ 1000). In the next 2Nlines there are their names followed by houses in which the Sorting Hat placed them.
A student's name may contain lowercase and uppercase English letters, spaces and hyphens. Each name contains not more than 200 symbols.
Output
Output lists of students of each house in the following format. In the first line there is the name of the house, then a colon, and in the next lines there is the list of students, one in a line. The
lists must be given in the following order: Slytherin, Hufflepuff, Gryffindor, Ravenclaw. There must be empty lines between the lists. In each list, names must be given in the order in which they were called out during the sorting. It is guaranteed that each
list will contain at least one student.
Sample
input
output
7
Ivan Ivanov
Gryffindor
Mac Go Nagolo
Hufflepuff
Zlobeus Zlei
Slytherin
Um Bridge
Slytherin
Tatiana Henrihovna Grotter
Ravenclaw
Garry Potnyj
Gryffindor
Herr Mionag-Ranger
Gryffindor
|
Slytherin:
Zlobeus Zlei
Um Bridge
Hufflepuff:
Mac Go Nagolo
Gryffindor:
Ivan Ivanov
Garry Potnyj
Herr Mionag-Ranger
Ravenclaw:
Tatiana Henrihovna Grotter
|
这是个利用map来分类的问题。
注意一下getline的运用,会把之前遗漏下来的换行符都继续读取的,所以记得要去掉之前有输入而又不使用getline读入的换行符。
利用一个数据结构:unordered_map<string, vector<string>>就能解决问题了
#include <string>
#include <vector>
#include <iostream>
#include <unordered_map>
using namespace std;
namespace{
static const int HOUSES = 4;
string houses[HOUSES] = {"Slytherin","Hufflepuff","Gryffindor","Ravenclaw"};
}
void SortingHat1446()
{
int n = 0;
cin>>n;
string name, houseName;
cin.ignore();//注意:去掉这个dumb换行符
unordered_map<string, vector<string> > umSVS;
for (int i = 0; i < n; i++)
{
getline(cin, name);
getline(cin, houseName);
umSVS[houseName].push_back(name);
}
for (int i = 0; i < HOUSES; i++)
{
vector<string> tmp = umSVS[houses[i]];
cout<<houses[i]<<":\n";
for (int j = 0; j < (int)tmp.size(); j++)
{
cout<<tmp[j]<<endl;
}
cout<<endl;
}
}
int main()
{
SortingHat1446();
return 0;
}
分享到:
相关推荐
some useful little program for new learner Graph Alg.:Red-Black tree,Dijkstra s algorithm,Depth first search and breadth... Sorting:Various array sorting algorithms.. Searching:Array searching algorithms
"Job-sorting-problem.rar"这个压缩包文件中包含的"Job sorting problem.txt"文本文件,很可能是对解决作业排序问题的一种算法或程序的描述。在阅读这份文件时,我们可以期待了解以下几个方面的内容: 1. **问题...
The sorting.exe
8. Sorting. 9. Tables and Information Retrieval. 10. Binary Trees. 11. Multiway Trees. 12. Graphs. 13. Case Study: The Polish Notation. Appendix A: Mathematical Methods. Appendix B: Random ...
SortingTest.exe
标题中的“bubble sort.zip_sorting”暗示了我们讨论的核心是排序算法中的冒泡排序。冒泡排序是一种简单直观的排序算法,它重复地遍历要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。遍历...
The C++ Standard Library A Tutorial and Reference (2nd Edition)+cppstdlib-code.zip C++标准库(第二版)英文版.pdf 非扫描版+源代码 Prefaceto the SecondEdition xxiii Acknowledgments for the Second...
"NGUI Sorting Layer script" 是针对NGUI的一个特定优化,用于解决UI元素的绘制顺序问题,使得开发者能够更灵活地控制界面元素的前后层次关系。 在Unity中,Sorting Layer是一个重要的概念,它允许我们将游戏对象...
SP-7098: Fixed a bug where re-sorting the list of code analysis issues caused all expanders to collapse (when grouping by issue type). SP-7131 : Fix crashes that occur when using a new licence.
auto_sorting.py
Sorting This is an Android App to show diferent sorting algorithms working. I'm a Test Analist and as developer I'm at Junior level. If yout would help this project, fell free to join. For now i just ...
该文章介绍了在光谱图像中采用独立分量分析的算法对西红柿进行分类
垃圾分类数据集 已经做好了必要的处理 1. 已经对训练集做了图象增广,请不要再对训练集做图象增广,避免影响训练效果 2. 图像大小已经全部处理好了,均为 1280 * 720 大小的 3. 本数据集有 训练集 测试集 验证集 4.
在计算机科学领域,算法是解决问题的步骤或指令集,它们被设计得尽可能高效且全面。特别是排序算法,它是我们处理数据时不可或缺的一部分,帮助我们将一组无序的数据转化为有序的形式,从而方便后续的分析和处理。...
本文将详细探讨"Insertion Sorting"、"Swap Sorting"(可能指的是Bubble Sort或Counting Sort,因为通常没有直接称为"Swap Sorting"的算法)、"Selection Sorting"这三种常见的排序算法,以及在实现这些算法时可能...
4.3 Heapsort: Fast Sorting via Data Structures . . . . . . . . . . . . 108 4.4 War Story: Give me a Ticket on an Airplane . . . . . . . . . . . 118 4.5 Mergesort: Sorting by Divide-and-Conquer . . . ....
哈利·波特·排序帽子 Sorting Hat是Hogwarts的一种有感觉的帽子,它神奇地确定了每个新学生最属于四个学校房屋中的哪个。... Sorting Hat根据用户给出的一系列答案得出的分析结果将您分类到不同的房子中。
【描述】"北大POJ1094-Sorting It All Out 解题报告+AC代码" 暗示了解题者已经成功解决了这个问题,并且提供了解题报告和通过测试的源代码(AC,Accepted,表示代码已通过所有测试用例)。解题报告通常包括对问题的...
Sorting.zip
The Way to Go,: A Thorough Introduction to the Go Programming Language 英文书籍,已Cross the wall,从Google获得书中源代码,分享一下。喜欢请购买正版。 目录如下: Contents Preface......................