zoukankan      html  css  js  c++  java
  • Song Jiang's rank list

    Description

    《Shui Hu Zhuan》,also 《Water Margin》was written by Shi Nai'an -- 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 eventually came to occupy Mout Liang(or Liangshan Marsh) and elected Song Jiang as their leader. 

    In order to encourage his military officers, Song Jiang always made a rank list after every battle. In 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 two outlaws killed the same number of enemies, the one whose name is smaller in alphabet order had higher rank. Now please help Song Jiang to make the rank list and answer some queries based on the rank list.
     

    Input

    There are no more than 20 test cases. 

    For each test case: 

    The first line is an integer N (0<N<200), indicating that there are N outlaws. 

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

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

    Then M queries follow. Each query is a line containing an outlaw's name. 
    The input ends with n = 0
     

    Output

    For each test case, print the rank list first. For this part in the output ,each line contains an 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 did but whose name is smaller in alphabet order than his/hers. For each query, if the minor rank is 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 an answer for it.
     

    Sample Input

    5 WuSong 12 LuZhishen 12 SongJiang 13 LuJunyi 1 HuaRong 15 5 WuSong LuJunyi LuZhishen HuaRong SongJiang 0
     

    Sample Output

    HuaRong 15 SongJiang 13 LuZhishen 12 WuSong 12 LuJunyi 1 3 2 5 3 1 2
     大意:水~寒假集训时候遗留下来的,经过寒假的集训,感觉代码能力明显提升了^_^,加油!
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    const int MAX = 300;
    struct edge{
        char s[60];
        int num;
        int id;
        int id1;
    }a[MAX];
    bool cmp1(edge i, edge j){
        return i.num > j.num;
    }
    int main()
    {
        int n;
        while(~scanf("%d",&n)&&n){
        memset(a,0,sizeof(a));
        getchar();
        for(int i = 1; i <= n; i++){
            scanf("%s%d",a[i].s,&a[i].num);
            a[i].id = 1;
        }
        sort(a+1,a+n+1,cmp1);
        for(int i = 1; i < n;i++){
            for(int j = i + 1; j <= n;j++){
                 int temp = strcmp(a[i].s,a[j].s);
                 if(a[i].num == a[j].num){
                 if(temp > 0){
                    a[i].id++;
                    char s2[MAX];
                    strcpy(s2,a[i].s);
                    strcpy(a[i].s,a[j].s);
                    strcpy(a[j].s,s2);
                    }
                 }
            }
        }
        for(int i = 1; i <= n ;i++)
            printf("%s %d
    ",a[i].s,a[i].num);
            for(int i = 1; i <= n ;i++)
                a[i].id = 1;
            for(int i = 1; i < n ;i++){
                for(int j = i + 1;j <= n;j++){
                      if(a[i].num == a[j].num){
                   if(strcmp(a[i].s,a[j].s)< 0)
                         a[j].id ++;
                    else a[i].id++;
                      }
                }
            }
            for(int i = 1; i <= n ;i++)
                a[i].id1 = i;
    
        int m;
        scanf("%d",&m);
        getchar();
        char s1[MAX];
        for(int i = 1; i <= m;i++){
            scanf("%s",s1);
            for(int j = 1; j <= n ;j++){
                if(strcmp(a[j].s,s1) == 0){
                    if(a[j].id == 1)
                    printf("%d
    ",a[j].id1);
                    else {
                    printf("%d %d
    ",a[j].id1-a[j].id+1,a[j].id);
                    break;
                    }
                }
            }
          }
        }
        return 0;
    }
    View Code
  • 相关阅读:
    EF工作流程
    EF简单的CodeFirst示例(自己创建数据库,不使用数据迁移)
    VS2017连接MySQL数据库
    Entity Framework简介
    ADO.NET
    linq连接
    linq语法
    linq和转换运算符
    学习MVC之前必须掌握的c#知识
    java 中 System
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4372416.html
Copyright © 2011-2022 走看看