PTA数据结构与算法题目集(中文)  7-40奥运排行榜 (25 分)

7-40 奥运排行榜 (25 分)
 

每年奥运会各大媒体都会公布一个排行榜,但是细心的读者发现,不同国家的排行榜略有不同。比如中国金牌总数列第一的时候,中国媒体就公布“金牌榜”;而美国的奖牌总数第一,于是美国媒体就公布“奖牌榜”。如果人口少的国家公布一个“国民人均奖牌榜”,说不定非洲的国家会成为榜魁…… 现在就请你写一个程序,对每个前来咨询的国家按照对其最有利的方式计算它的排名。

输入格式:

输入的第一行给出两个正整数N和M(≤,因为世界上共有224个国家和地区),分别是参与排名的国家和地区的总个数、以及前来咨询的国家的个数。为简单起见,我们把国家从0 ~ N−1编号。之后有N行输入,第i行给出编号为i−1的国家的金牌数、奖牌数、国民人口数(单位为百万),数字均为[0,1000]区间内的整数,用空格分隔。最后面一行给出M个前来咨询的国家的编号,用空格分隔。

输出格式:

在一行里顺序输出前来咨询的国家的排名:计算方式编号。其排名按照对该国家最有利的方式计算;计算方式编号为:金牌榜=1,奖牌榜=2,国民人均金牌榜=3,国民人均奖牌榜=4。输出间以空格分隔,输出结尾不能有多余空格。

若某国在不同排名方式下有相同名次,则输出编号最小的计算方式。

输入样例:

4 4
51 100 1000
36 110 300
6 14 32
5 18 40
0 1 2 3

输出样例:

1:1 1:2 1:3 1:4
题目分析:利用表排序和快速排序对每个元素进行排序并写入到结构体数组中,注意当金牌数相同时,后一个排名与上一个相同
题外话:我自己写的比较相同排名时的函数过不了--来自菜鸡的抱怨
 #define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include<malloc.h> struct Country
{
float Medals[];
int Sort[];
}Countrys[];
int Table[];
int Note[];
void Swap(int i, int j)
{
int tmp = Table[i];
Table[i] = Table[j];
Table[j] = tmp;
}
void InitializeTable(int N)
{
for (int i = ; i < N; i++)
{
Table[i] = i;
Note[i] = ;
}
}
void QuickSort(int start,int end,int i)
{
if (start >= end - )
return;
int mid = (start + end) / ;
Swap(start, mid);
int k = start + ;
for (int j = start + ; j < end; j++)
{
if (Countrys[Table[j]].Medals[i] > Countrys[Table[start]].Medals[i])
Swap(k++, j);
}
Swap(start, k- );
QuickSort(start, k - , i);
QuickSort(k, end, i);
}
void Judget(int N,int i)
{
for (int j = ; j < N; j++)
{
if (j > && Countrys[Table[j]].Medals[i] == Countrys[Table[j - ]].Medals[i])
Countrys[Table[j]].Sort[i] = Countrys[Table[j - ]].Sort[i];
else
Countrys[Table[j]].Sort[i] = j;
}
}
int main()
{
int N, M;
scanf("%d%d", &N, &M);
float num;
for (int i = ; i < N; i++)
{
scanf("%f%f%f", &Countrys[i].Medals[], &Countrys[i].Medals[], &num);
Countrys[i].Medals[] = Countrys[i].Medals[] / num;
Countrys[i].Medals[] = Countrys[i].Medals[] / num;
}
for (int i = ; i < ; i++)
{
InitializeTable(N);
QuickSort(, N, i);
Judget(N,i);
}
int n;
for (int i = ; i < M; i++)
{
int MinSort = ;
int Min = ;
scanf("%d", &n);
for (int j = ; j < ; j++)
{
if (Countrys[n].Sort[j] < MinSort)
{
MinSort = Countrys[n].Sort[j];
Min = j;
}
else if (Countrys[n].Sort[j] == MinSort && j < Min)
Min = j;
}
if(i!=M-)
printf("%d:%d ", MinSort+, Min+);
else
printf("%d:%d", MinSort + , Min + );
}
return ;
}
04-27 00:13