HDU 5131 Song Jiang ' s rank list (water problem)

Source: Internet
Author: User

Song Jiang ' s rank listTime limit:2000/1000 MS (java/others) Memory limit:512000/512000 K (java/others)
Total submission (s): 253 Accepted Submission (s): 128


Problem Description "Shui Hu Zhuan", also "water Margin" was written by Shi Nai's--an writer of Yuan and Ming dynasty. "Shui Hu Zhuan" is one of the four great classical novels of Chinese literature. It tells a story about 108 outlaws. They came from different backgrounds (including scholars, fishermen, Imperial drill instructors etc.), and all of them eve Ntually came to occupy Mout Liang (or Liangshan Marsh) and elected Song Jiang as their leader.

In order to encourage he military officers, Song Jiang always made a rank list after every battle. The rank list, all 108 outlaws were ranked by the number of enemies he/she killed in the battle. The more enemies one killed, one's rank is higher. If Outlaws killed the same number of enemies, the one whose name is smaller in alphabet order had higher rank. Now, help Song Jiang to make the rank list and answer some queries based on the rank list.
Inputthere is no more than test cases.

For each test case:

The first line is a integer n (0<n<200), indicating that there be n outlaws.

Then N lines follow. Each line contains a string S and a integer K (0<k<300), meaning an outlaw ' s name and the number of enemies he/she h Ad killed. A name consists only letters, and its length is between 1 and (inclusive). Every name is unique.

The next line is a integer m (0<m<200), indicating that there is M queries.

Then M queries follow. Each query was a line containing an outlaw ' s name.
The input ends with n = 0
Outputfor each test case, print the Rank list first. For the contains a outlaw ' s name and the number of enemies he killed.

Then, for each name in the query of the input, print the Outlaw ' s rank. Each outlaw had a major rank and a minor rank. One ' s major rank is one plus the number of outlaws who killed more enemies than him/her did. One ' s minor rank is one plus the number of outlaws who killed the same number of enemies as he/she do but whose name is S Maller in Alphabet order than his/hers. For each query, if the minor rank was 1, then print the major rank only. Or else Print The major rank, blank, and then the minor rank. It's guaranteed that each query has a answer for it.
Sample Input
5WuSong 12LuZhishen 12SongJiang 13LuJunyi 1HuaRong 155WUSONGLUJUNYILUZHISHENHUARONGSONGJIANG0

Sample Output
Huarong 15SongJiang 13LuZhishen 12WuSong 12LuJunyi 13 25312


Test Instructions: give you n person, and then the following n lines tell you the name of the n person and the number of homicides. Give you another m, say

M inquiry. The following M-line indicates the name of the person asking.

Output: First according to kill the number from large to small output, when the number of homicides is the same, according to the dictionary order from small to large rule output.
Then for each queried name, the number of people who killed more than his own number +1; then the dictionary order of the output name

less than himself and kills the same number of people +1 if this number is 1 without output.

#include <iostream> #include <algorithm> #include <cstdio> #include <string> #include <map    >using namespace Std;const int maxn=210;struct node{string str; int ran;} A[maxn];int n,m;string q[maxn];map <string, int > Mp;bool judge (node P,node q) {if (P.ran==q.ran) return P.STR&L     T;Q.STR; return P.ran>q.ran;}    void input () {mp.clear ();        for (int i=0;i<n;i++) {cin>>a[i].str>>a[i].ran;    Mp[a[i].str]=a[i].ran;    } cin>>m; for (int i=0;i<m;i++) cin>>q[i];}    void Solve () {sort (A,a+n,judge);    for (int i=0;i<n;i++) cout<<a[i].str<< "" <<a[i].ran<<endl;         for (int i=0;i<m;i++) {int num=mp[q[i]],cnt=0,coun=1;             for (int j=0;j<n;j++) {if (a[j].ran>num) coun++;             if (a[j].ran==num) cnt++;         if (A[j].str==q[i]) break;    } if (cnt>1) cout<<coun<< "" <<cnt<<endl;     else cout<<coun<<endl;         }}int Main () {while (scanf ("%d", &n)!=eof) {if (n==0) break;         Input ();     Solve (); } return 0;}


HDU 5131 Song Jiang ' s rank list (water problem)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.