zoukankan      html  css  js  c++  java
  • HDU--2115

    I Love This Game

    Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 6357    Accepted Submission(s): 2175


    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
     

    Author
    為傑沉倫
     

    Source

    #include<stdio.h>
    #include<string.h>
    struct people{
    	char name[50];
    	int time;
    	int rank;
    } a[11];
    char temp[50];
    int main()
    {
    	int n,i,count=0,m,s,j;
    	while(scanf("%d",&n),n)
    	{
    		if(count) printf("
    ");
    		count++;
    		printf("Case #%d
    ",count);
    		for(i=1;i<=n;i++)
    		{
    			scanf("%s %d:%d",a[i].name,&m,&s);
    			a[i].time=m*60+s;
    		}
    		for(i=1;i<=n;i++)
    		for(j=i+1;j<=n;j++)
    		{
    			if(a[i].time>a[j].time) 
    			{
    				strncpy(temp,a[j].name,50);
    				strncpy(a[j].name,a[i].name,50);
    				strncpy(a[i].name,temp,50);
    				m=a[i].time;
    				a[i].time=a[j].time;
    				a[j].time=m;
    			}
    		}
    		a[1].rank=1;
    		for(i=2;i<=n;i++)
    		if(a[i].time==a[i-1].time)
    			a[i].rank=a[i-1].rank;
    		else 
    			a[i].rank=i;
    		for(i=1;i<=n;i++)
    			printf("%s %d
    ",a[i].name,a[i].rank);
    	}
    	return 0;
    }


  • 相关阅读:
    《认知突围》摘抄
    《java多线程编程核心技术》----ThreadLocal
    java有必要记录的东西
    spring源码几个servlet功能的介绍
    基于openapi3.0的yaml文件生成java代码的一次实践
    Android攻城狮 调试
    Android攻城狮 http协议
    Android攻城狮 Android中更新UI的几种方式
    Android攻城狮 Handler与子线程
    Android攻城狮Handler简介
  • 原文地址:https://www.cnblogs.com/Tovi/p/6194890.html
Copyright © 2011-2022 走看看