Song Jiang's rank list (Hangzhou electric oj5131) (2014ACM/ICPC Asia Guangzhou Station)

Source: Internet
Author: User
Tags strcmp

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


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

SOURCE2014ACM/ICPC Asia Guangzhou Station-Replay (thanks to Chinese laborers and Peking University) test instructions:
According to the number of killings from large to small output, the same number of homicides, by name dictionary order from small to large rules output.
Then enter a name that kills more than his own number of people +1; then the dictionary of the output name
Less than himself and kills the same number of people +1 if this number is 1 without output.

 #include < stdio.h> #include <string.h> #include <algorithm>using namespace std;struct st{char name[303];int kill;} Data[202];int CMP (ST A,st B)//Note the sorting is good. {if (A.kill!=b.kill) return A.kill>b.kill;else if (strcmp (a.name,b.name) <0) return 1;else return 0;} int main () {int I,j,l,n,m,k,t;char s[302];while (scanf ("%d", &n) &&n) {for (i=0;i<n;i++) scanf ("%s%d", Data[i].name,&data[i].kill); sort (data,data+n,cmp); for (i=0;i<n;i++) {printf ("%s%d\n", Data[i].name,data[i] . Kill);        scanf ("%d", &m), for (i=0;i<m;i++) {scanf ("%s", s), and for (l=0;l<n;l++) {if (strcmp (s,data[l].name) ==0) {k=l;    T=1;    for (j=k-1;j>=0;j--) {if (Data[k].kill==data[j].kill) t++;    } if (t==1) printf ("%d\n", k+1);   else printf ("%d%d\n", k-t+2,t); }}}}return 0;} 

Song Jiang's rank list (Hang oj5131) (2014ACM/ICPC Asia Guangzhou station)

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.