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

    题目连接

    http://acm.hdu.edu.cn/showproblem.php?pid=5131

    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

    stl大法。。

     1 #include<algorithm>
     2 #include<iostream>
     3 #include<cstdlib>
     4 #include<cstring>
     5 #include<cstdio>
     6 #include<vector>
     7 #include<string>
     8 #include<map>
     9 #include<set>
    10 using std::cin;
    11 using std::cout;
    12 using std::endl;
    13 using std::find;
    14 using std::sort;
    15 using std::set;
    16 using std::map;
    17 using std::pair;
    18 using std::vector;
    19 using std::string;
    20 using std::multiset;
    21 using std::multimap;
    22 #define pb(e) push_back(e)
    23 #define sz(c) (int)(c).size()
    24 #define mp(a, b) make_pair(a, b)
    25 #define all(c) (c).begin(), (c).end()
    26 #define iter(c) decltype((c).begin())
    27 #define cls(arr,val) memset(arr,val,sizeof(arr))
    28 #define cpresent(c, e) (find(all(c), (e)) != (c).end())
    29 #define rep(i, n) for (int i = 0; i < (int)(n); i++)
    30 #define tr(c, i) for (iter(c) i = (c).begin(); i != (c).end(); ++i)
    31 const int N = 210;
    32 typedef unsigned long long ull;
    33 map<string, int> A;
    34 map<int, set<string> >B;
    35 struct Node {
    36     int val;
    37     string name;
    38     inline bool operator<(const Node &a) const {
    39         return val == a.val ? name < a.name : val > a.val;
    40     }
    41 }rec[N];
    42 int main() {
    43 #ifdef LOCAL
    44     freopen("in.txt", "r", stdin);
    45     freopen("out.txt", "w+", stdout);
    46 #endif
    47     std::ios::sync_with_stdio(false);
    48     int n, m;
    49     string buf;
    50     while (~scanf("%d", &n) && n) {
    51         A.clear(), B.clear();
    52         rep(i, n) {
    53             cin >> rec[i].name >> rec[i].val;
    54             A[rec[i].name] = rec[i].val;
    55             B[rec[i].val].insert(rec[i].name);
    56         }
    57         sort(rec, rec + n);
    58         rep(i, n) cout << rec[i].name << " " << rec[i].val << endl;
    59         cin >> m;
    60         while (m--) {
    61             cin >> buf;
    62             int v, ans1 = 1, ans2 = 1;
    63             v = A[buf];
    64             tr(A, i) if (i->second > v) ans1++;
    65             tr(B[v], i) if (*i < buf) ans2++;
    66             if (1 == ans2) printf("%d
    ", ans1);
    67             else printf("%d %d
    ", ans1, ans2);
    68         }
    69     }
    70     return 0;
    71 }
    View Code
    By: GadyPu 博客地址:http://www.cnblogs.com/GadyPu/ 转载请说明
  • 相关阅读:
    C# Json数组序列化和反序列总结
    从Excel文件中读取内容
    JS replace()用法实现replaceAll
    JS 缓存
    JS 从HTML页面获取自定义属性值
    根据IP和端口号异步短时间判断服务器是否链接
    时间戳与时间相互转换(13位)(转)
    JS enter事件及数据不完整阻止下一步操作
    JS 检测浏览器中是否安装了特定的插件
    C# Cache 缓存
  • 原文地址:https://www.cnblogs.com/GadyPu/p/4622020.html
Copyright © 2011-2022 走看看