I Love This Game 2115

来源:互联网 发布:淘宝虚拟商品怎么上架 编辑:程序博客网 时间:2024/05/11 01:56

Problem Description

Do you like playing basketball ? If you are , you may know the NBA Skills Challenge . It is the content of the basketball skills . It include several parts , such as passing , shooting , and so on. After completion of the content , the player who takes the shortest time will be the winner . Now give you their names and the time of finishing the competition , your task is to give out the rank of them ; please output their name and the rank, if they have the same time , the rank of them will be the same ,but you should output their names in lexicographic order.You may assume the names of the players are unique.

Is it a very simple problem for you? Please accept it in ten minutes.

Input

This problem contains multiple test cases! Ease test case contain a n(1<=n<=10) shows the number of players,then n lines will be given. Each line will contain the name of player and the time(mm:ss) of their finish.The end of the input will be indicated by an integer value of zero.

Output

The output format is shown as sample below.
Please output the rank of all players, the output format is shown as sample below;
Output a blank line between two cases.

Sample Input

10

Iverson 17:19

Bryant 07:03

Nash 09:33

Wade 07:03

Davies 11:13

Carter 14:28

Jordan 29:34

James 20:48

Parker 24:49

Kidd 26:46

0

Sample Output

Case #1

Bryant 1

Wade 1

Nash 3

Davies 4

Carter 5

Iverson 6

James 7

Parker 8

Kidd 9

Jordan 10

#include <iostream>#include <string>#include <algorithm>#include <cstdio>struct people{    std::string strName;    int nH;    int nM;    bool operator<(const people &rhs) const    {        if(nH < rhs.nH)        {            return true;        }        else if(nH == rhs.nH && nM < rhs.nM)        {            return true;        }        else if(nH == rhs.nH && nM == rhs.nM && strName < rhs.strName)        {            return true;        }        else        {            return false;        }    }};int main(int argc, const char *argv[]){    int n, nCount = 1;    bool bFlag = true;    while(std::cin >> n && n != 0)    {        if(bFlag)        {            bFlag = false;        }        else        {            std::cout << std::endl;        }        people p[10];        for(int i = 0;i < n;++ i)        {            std::cin >> p[i].strName;            scanf("%d:%d", &p[i].nH, &p[i].nM);        }        std::sort(p, p + n);        std::cout << "Case #" << nCount << std::endl;        int nRank = 1;        for(int i = 0;i < n;++ i)        {            if(i != 0 && (p[i].nH != p[i - 1].nH || p[i].nM != p[i - 1].nM))            {                nRank = i + 1;            }            std::cout << p[i].strName << " " << nRank << std::endl;        }        ++ nCount;    }    //system("pause");    return 0;}
0 0
原创粉丝点击